replicant-frameworks_native/libs/utils
Dianne Hackborn 0f253efba5 Don't re-parse the framework resources all the time.
A small optimization to the resource code, to not re-parse the framework
resources every time we build a new AssetManager.  Instead, you can now
construct a ResTable from a previously created one...  of course, like the
existing code for using the data in-place, you can't delete the original
ResTable until you have deleted the one that has been constructed from it.
2009-07-06 11:12:37 -07:00
..
Android.mk
Asset.cpp Don't re-parse the framework resources all the time. 2009-07-06 11:12:37 -07:00
AssetDir.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
AssetManager.cpp Don't re-parse the framework resources all the time. 2009-07-06 11:12:37 -07:00
BackupData.cpp
BackupHelpers.cpp Better (and less) logging from backup. 2009-06-26 17:19:11 -04:00
Binder.cpp
BpBinder.cpp
BufferedTextOutput.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
CallStack.cpp
CharacterData.h rename a few files to camel-case, add copyright notices 2009-06-04 13:53:57 -07:00
Debug.cpp
executablepath_darwin.cpp
executablepath_linux.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
FileMap.cpp
futex_synchro.c This should fix the simulator build. 2009-05-22 12:25:56 -07:00
IDataConnection.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
IInterface.cpp
IMemory.cpp
InetAddress.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
IPCThreadState.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
IPermissionController.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
IServiceManager.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
MemoryBase.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
MemoryDealer.cpp
MemoryHeapBase.cpp
MemoryHeapPmem.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
NOTICE
Parcel.cpp
Pipe.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
ported.cpp
ProcessState.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
ResourceTypes.cpp
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 auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
StopWatch.cpp
String8.cpp
String16.cpp auto import from //branches/cupcake/...@137873 2009-03-11 12:11:56 -07:00
SystemClock.cpp
TextOutput.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
Threads.cpp auto import from //depot/cupcake/@136594 2009-03-05 14:34:35 -08:00
TimerProbe.cpp
Timers.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
Unicode.cpp
VectorImpl.cpp
ZipEntry.cpp rename a few files to camel-case, add copyright notices 2009-06-04 13:53:57 -07:00
ZipFile.cpp
ZipFileCRO.cpp
ZipFileRO.cpp rename a few files to camel-case, add copyright notices 2009-06-04 13:53:57 -07:00
ZipUtils.cpp rename a few files to camel-case, add copyright notices 2009-06-04 13:53:57 -07: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.