replicant-frameworks_native/libs/utils
Mathias Agopian 83c0446f27 some work to try to reduce the code size of some native libraries
- make sure that all binder Bn classes define a ctor and dtor in their respective library.
  This avoids duplication of the ctor/dtor in libraries where these objects are instantiated.
  This is also cleaner, should we want these ctor/dtor to do something one day.

- same change as above for some Bp classes and various other non-binder classes

- moved the definition of CHECK_INTERFACE() in IInterface.h instead of having it everywhere.

- improved the CHECK_INTERFACE() macro so it calls a single method in Parcel, instead of inlining its code everywhere

- IBinder::getInterfaceDescriptor() now returns a "const String16&" instead of String16, which saves calls to String16 and ~String16

- implemented a cache for BpBinder::getInterfaceDescriptor(), since this does an IPC. HOWEVER, this method never seems to be called.
  The cache makes BpBinder bigger, so we need to figure out if we need this method at all.
2009-05-26 16:12:20 -07:00
..
Android.mk checkpoint: split libutils into libutils + libbinder 2009-05-20 12:55:02 -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
executablepath_darwin.cpp auto import from //depot/cupcake/@135843 2009-03-03 19:31:44 -08:00
executablepath_linux.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
Pipe.cpp 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.