| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
to gingerbread.
Add a new #define IN6_IS_ADDR_ULA, for testing for Universal Local IPv6 Unicast addresses (ULAs). These replace the old site-local IPv6 addresses.
|
|
|
|
|
|
| |
to gingerbread.
Don't treat private IPv4 addresses as being in a non-global scope. The effect of this change is essentially to prefer NATed IPv4 over 6to4.
|
|
|
|
|
|
|
| |
Allows pn544 hardware reset
Change-Id: I6d6d22b16c228f03a70a14a4655a41005761b5d6
Signed-off-by: Nick Pelly <npelly@google.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This change allows an executable to call its destructor functions
(declared with __attribute__((destructor))) to be properly called
when it normally exits.
Note that this is different from calling the destructors of a shared
library when it is unloaded with dlclose() or through program exit,
which are already supported.
Bug: 3106500
Change-Id: I1412ef5407f13b613fc6cb6103e0a691dbee4b1a
|
|
|
|
|
|
| |
The implementation file uses the correct spelling.
Change-Id: I572e336f8695a9754267c8d2e0a67b1b69bacb06
|
|
|
|
|
|
|
| |
(We remove the declaration for on_exit() from the C library headers,
so do the same for the C++ <cstdlib>)
Change-Id: I31a21d5643068cd160724908dd8156863a44d95a
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This matches recent changes in the NDK header.
We enclose missing functions in #if 0 .. #endif blocks
with a clear "MISSING" in comments in order to locate
them later.
Change-Id: I87b3a62e777897e75c9243360fb0a82bcc53d9fb
|
|/
|
|
| |
Change-Id: I90e578fdc82e427caee8fa4157ce3f8c6c99926d
|
|
|
|
|
|
|
|
| |
This reverts commit 80fba9a2fe4eacaabee99cf0bbead872c2792231,
which caused the system to not boot anymore, aborting with:
"java.lang.RuntimeException: Missing static main on com.android.server.SystemServer".
Change-Id: I745e0a23c728cccf5f95a3c7642d544478a4e57e
|
|
|
|
| |
Change-Id: Ide040884c456190226e580513099fdb8377e015b
|
|
|
|
| |
Change-Id: I312ee608dbf9249e4886a10d45d13e3cda8a9042
|
|
|
|
| |
Change-Id: I04bb655d77e414021e1f2a973329167ad76ca1c4
|
|\ |
|
| |
| |
| |
| | |
Change-Id: I94dad48678181d8b02431b1c1f5d507beafb5406
|
|\ \ |
|
| |/
| |
| |
| | |
Change-Id: I5652f4f97ca59d95176443fc27c737ef76258183
|
|\ \ |
|
| |/
| |
| |
| | |
Change-Id: Ie7ad57898e67800a9fe92bb52589d67ec30e1cd9
|
|\ \
| | |
| | |
| | | |
gingerbread
|
| |/
| |
| |
| | |
Change-Id: Iacb914bd6ac5adc60c5671e6fef680ede21f9b0c
|
|\ \ |
|
| |/
| |
| |
| |
| |
| |
| | |
See http://code.google.com/p/android/issues/detail?id=6697
for details about this change.
Change-Id: I516f00c6f3bc99b22be51669e4573246bdd6e33d
|
|/
|
|
| |
Change-Id: I4af84f912062cd2ff34711c25122fb323f20c032
|
|
|
|
|
|
| |
Backport change I9fc8b790 from Master to Gingerbread
Change-Id: I5cf48fcd4efb7991ed82f87d9365c19655dc9b7f
|
|
|
|
|
|
|
| |
- add /vendor/lib to front of default library search path
- remove long-obsolete /lib from default library search path
Change-Id: I7d33bf899be018e7cc4c213d5790bbd991023a62
|
|
|
|
| |
Change-Id: I9dc96d72b2becdd31981b4d176a13358aef6dcb9
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| | |
Return a valid pointer (not NULL) when the character "c" is at the end of "src".
Change-Id: Iab0b677943f2c8a9fbb255c44689f5d6dc3535d7
Example:
memccpy(dest, "xzy", 'y', 3) should return dest+3 rather than null.
|
|\ \
| |/
|/| |
|
| |
| |
| |
| | |
Change-Id: Ib2c89ac13b03f07c6c712a544bc0d5d1c9dc57df
|
|/
|
|
|
|
|
| |
This is needed to fix gdbserver's handling of threaded programs,
among other things.
Change-Id: I823387c602cef9891532da946a01db14be780ab0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(We've been missing the zoneinfo.* files for the host dalvikvm. My fix for
gingerbread will have to wait for someone to return from vacation, but I can
commit here in advance, and I need to so that I can submit
https://android-git.corp.google.com/g/60790 which -- amongst other things --
makes lack of time zone data a hard failure, rather than just silently
pretending all time zones are UTC.)
Bug: 2870945
git cherry-pick --no-commit 18a859aff4e1b97d644429b7ecdb366b18d5a708
Change-Id: I66647e824c5fee9b8d2c63085e2a58e5910a5544
|
|
|
|
|
| |
Change-Id: Ia9165fd9aa1951b2bb81d0ac8f5bb3057aded8bd
Signed-off-by: Dima Zavin <dima@android.com>
|
|
|
|
|
|
|
|
|
| |
Previously, the malloc leak checking code would crash in qsort()
if null entries existed in its bookkeeping table. This change
makes the comparison function detect null entries and sort them
to the end safely.
Change-Id: I88244a7df1e289dd9d7992ce29606d505bd63079
|
|
|
|
| |
This reverts commit e4fa46e75cd0d433b5c6c064720ed7e195cba7c8.
|
|
|
|
| |
Change-Id: If66422d538d0fb0c6ae8a7399c62911635d1fd13
|
|
|
|
| |
Change-Id: If657e1783e3f96c52bfe613bad027482d8373c67
|
|
|
|
| |
Change-Id: Icba37823cb350c34848cc466d144c3a0af87c94c
|
|
|
|
| |
Change-Id: I25598b08e9cafe98a86cdb2e40481d9aedc8dcee
|
|
|
|
| |
Change-Id: I399d7811a07f82a6819d3973681f8b35b655dbd1
|
|
|
|
|
|
| |
This matches the GLibc behaviour, and allows alarm(0xFFFFFFFF) to return 0.
Change-Id: I419aa71b27d6bb2015d15ba6b6112bf62eadcbb8
|
|
|
|
|
|
| |
The syscall expects the size of the buffer as the second argument.
Change-Id: I99ede2fec7fcd385ca03ff022c2cffa4297bea8d
|
|
|
|
| |
Change-Id: I20a8dcd2e3316ac60237e800c682cacc8e59e187
|
|
|
|
|
|
|
| |
This also allows us to optimize the case where we increment an
uncontended semaphore (no need to call futex_wake() then).
Change-Id: Iad48efe8551dc66dc89d3e3f18c001e5a6c1939f
|
|
|
|
| |
Change-Id: Iddb2204fa792fa9aca5f19838926dddbb09b74a2
|
|
|
|
|
|
|
| |
This is needed to build an independent toolchain with g++ that doesn't think
that all these headers are in C.
Change-Id: Ie9a8ccfcab7780d6a4e5722777d61c2b1b312001
|
|\ |
|
| |
| |
| |
| | |
Change-Id: Id4faa5bacb03cc42377527e05c53c6392c776e7d
|
|/
|
|
|
|
|
|
| |
Also add missing declarations to misc. functions.
Fix clearerr() implementation (previous was broken).
Handle feature test macros like _POSIX_C_SOURCE properly.
Change-Id: Icdc973a6b9d550a166fc2545f727ea837fe800c4
|