replicant-frameworks_native/libs/utils
Andy McFadden da416411e0 Sim-only files move, part 2/2.
Move Pipe and executablepath from libutils to the simulator, since nothing
else uses them.
2009-05-27 16:01:39 -07:00
..
Android.mk Sim-only files move, part 2/2. 2009-05-27 16:01:39 -07:00
Asset.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
AssetDir.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
AssetManager.cpp Update aapt badging for native code, configs, density, etc. 2009-05-18 15:22:00 -07:00
backup_data.cpp Hook up the backup data writer, and add a utility to read the backup data files. 2009-05-20 11:24:20 -07:00
backup_helper_file.cpp Fix for the simultor build breakage. 2009-05-22 15:54:26 -07:00
BufferedTextOutput.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
CallStack.cpp some work to try to reduce the code size of some native libraries 2009-05-26 16:12:20 -07:00
characterData.h auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
Debug.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
FileMap.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
futex_synchro.c This should fix the simulator build. 2009-05-22 12:25:56 -07:00
InetAddress.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
LogSocket.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
misc.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
MODULE_LICENSE_APACHE2 auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
NOTICE auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
ported.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
README auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
RefBase.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
ResourceTypes.cpp Squashed commit of the following: 2009-04-22 14:35:11 -07:00
SharedBuffer.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
Socket.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
Static.cpp checkpoint: split libutils into libutils + libbinder 2009-05-20 12:55:02 -07:00
StopWatch.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
String8.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
String16.cpp auto import from //branches/cupcake/...@137873 2009-03-11 12:11:56 -07:00
SystemClock.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
TextOutput.cpp some work to try to reduce the code size of some native libraries 2009-05-26 16:12:20 -07:00
Threads.cpp auto import from //depot/cupcake/@136594 2009-03-05 14:34:35 -08:00
TimerProbe.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
Timers.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
Unicode.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
VectorImpl.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
ZipEntry.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
ZipFile.cpp AI 146964: tabs -> spaces 2009-04-20 12:48:39 -07:00
ZipFileCRO.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
ZipFileRO.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
ZipUtils.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00

Android Utility Function Library

If you need a feature that is native to Linux but not present on other
platforms, construct a platform-dependent implementation that shares
the Linux interface.  That way the actual device runs as "light" as
possible.

If that isn't feasible, create a system-independent interface and hide
the details.

The ultimate goal is *not* to create a super-duper platform abstraction
layer.  The goal is to provide an optimized solution for Linux with
reasonable implementations for other platforms.