Home | History | Annotate | only in /frameworks/base/libs/utils
Up to higher level directory
NameDateSize
Android.mk19-Dec-20103.1K
Asset.cpp19-Dec-201020.8K
AssetDir.cpp19-Dec-20101.7K
AssetManager.cpp19-Dec-201052.7K
BackupData.cpp19-Dec-20108.4K
BackupHelpers.cpp19-Dec-201036K
BufferedTextOutput.cpp19-Dec-20107.4K
CallStack.cpp19-Dec-20108.4K
Debug.cpp19-Dec-20108.5K
FileMap.cpp19-Dec-20105.6K
Flattenable.cpp19-Dec-2010731
Looper.cpp19-Dec-201017.8K
misc.cpp19-Dec-20103.8K
MODULE_LICENSE_APACHE219-Dec-20100
NOTICE19-Dec-201010.4K
ObbFile.cpp19-Dec-20109.5K
Pool.cpp19-Dec-2010736
README19-Dec-2010527
RefBase.cpp19-Dec-201014.5K
ResourceTypes.cpp19-Dec-2010160K
SharedBuffer.cpp19-Dec-20102.7K
Static.cpp19-Dec-20102.1K
StopWatch.cpp19-Dec-20102K
StreamingZipInflater.cpp19-Dec-20107.9K
String16.cpp19-Dec-201014.9K
String8.cpp19-Dec-201022.5K
StringArray.cpp19-Dec-20102.6K
SystemClock.cpp19-Dec-20103.3K
tests/19-Dec-2010
TextOutput.cpp19-Dec-20103.5K
Threads.cpp19-Dec-201023.5K
Timers.cpp19-Dec-20103K
VectorImpl.cpp19-Dec-201017.5K
ZipFileCRO.cpp19-Dec-20101.8K
ZipFileRO.cpp19-Dec-201027.2K
ZipUtils.cpp19-Dec-20109.4K

README

      1 Android Utility Function Library
      2 
      3 If you need a feature that is native to Linux but not present on other
      4 platforms, construct a platform-dependent implementation that shares
      5 the Linux interface.  That way the actual device runs as "light" as
      6 possible.
      7 
      8 If that isn't feasible, create a system-independent interface and hide
      9 the details.
     10 
     11 The ultimate goal is *not* to create a super-duper platform abstraction
     12 layer.  The goal is to provide an optimized solution for Linux with
     13 reasonable implementations for other platforms.
     14 
     15