Home | History | Annotate | only in /dalvik/vm
Up to higher level directory
NameDateSize
alloc/20-Sep-2013
AllocTracker.cpp20-Sep-201319.6K
AllocTracker.h20-Sep-20132K
analysis/20-Sep-2013
Android.mk20-Sep-20134.8K
arch/20-Sep-2013
Atomic.cpp20-Sep-20136.4K
Atomic.h20-Sep-20132.1K
AtomicCache.cpp20-Sep-20135.3K
AtomicCache.h20-Sep-20137.7K
Bits.h20-Sep-20137K
BitVector.cpp20-Sep-20138.9K
BitVector.h20-Sep-20133.4K
CheckJni.cpp20-Sep-201385.8K
Common.h20-Sep-20133.6K
compiler/20-Sep-2013
dalvik20-Sep-20131.1K
Dalvik.h20-Sep-20132.3K
DalvikVersion.h20-Sep-20131.1K
Ddm.cpp20-Sep-201313.4K
Ddm.h20-Sep-20132.4K
Debugger.cpp20-Sep-201380.8K
Debugger.h20-Sep-20139.6K
Dvm.mk20-Sep-201310.4K
DvmDex.cpp20-Sep-20138.7K
DvmDex.h20-Sep-20134.7K
Exception.cpp20-Sep-201350K
Exception.h20-Sep-201314.8K
Globals.h20-Sep-201331.9K
Hash.cpp20-Sep-201311.7K
Hash.h20-Sep-20136.8K
hprof/20-Sep-2013
IndirectRefTable.cpp20-Sep-201310.6K
IndirectRefTable.h20-Sep-201313.2K
Init.cpp20-Sep-201369.5K
Init.h20-Sep-20132.3K
InitRefs.cpp20-Sep-201322.4K
InlineNative.cpp20-Sep-201327.9K
InlineNative.h20-Sep-20136.5K
Inlines.cpp20-Sep-2013893
Inlines.h20-Sep-20131.3K
Intern.cpp20-Sep-20135.4K
Intern.h20-Sep-20131K
interp/20-Sep-2013
JarFile.cpp20-Sep-201312.3K
JarFile.h20-Sep-20132K
jdwp/20-Sep-2013
Jni.cpp20-Sep-2013124K
JniInternal.h20-Sep-20134.5K
LinearAlloc.cpp20-Sep-201322.1K
LinearAlloc.h20-Sep-20133.5K
Misc.cpp20-Sep-201321.6K
Misc.h20-Sep-201310.7K
mterp/20-Sep-2013
native/20-Sep-2013
Native.cpp20-Sep-201323.7K
Native.h20-Sep-20133K
oo/20-Sep-2013
os/20-Sep-2013
PointerSet.cpp20-Sep-20136.6K
PointerSet.h20-Sep-20132.5K
Profile.cpp20-Sep-201329K
Profile.h20-Sep-20135.6K
RawDexFile.cpp20-Sep-20137.5K
RawDexFile.h20-Sep-20132.3K
README.txt20-Sep-2013636
ReconfigureDvm.mk20-Sep-20131.1K
ReferenceTable.cpp20-Sep-201310.5K
ReferenceTable.h20-Sep-20133.8K
reflect/20-Sep-2013
SignalCatcher.cpp20-Sep-20138.8K
SignalCatcher.h20-Sep-2013827
StdioConverter.cpp20-Sep-20137.2K
StdioConverter.h20-Sep-2013845
Sync.cpp20-Sep-201341K
Sync.h20-Sep-20134.1K
test/20-Sep-2013
Thread.cpp20-Sep-2013122.5K
Thread.h20-Sep-201317.8K
UtfString.cpp20-Sep-201312.4K
UtfString.h20-Sep-20134.2K

README.txt

      1 Dalvik Virtual Machine
      2 
      3 
      4 Source code rules of the road:
      5 
      6 - All externally-visible function names must start with "dvm" to avoid
      7 namespace clashes.  Use static functions when possible.
      8 
      9 - Do not create static variables (globally or locally).  Do not create
     10 global variables.  Keep everything with non-local lifespan in "gDvm",
     11 defined in Globals.h, so that all global VM state is in one place.
     12 
     13 - Use "startup" and "shutdown" functions to clean up gDvm.  The VM must
     14 exit cleanly in valgrind.
     15 
     16 - The primary target is ARM Linux.  Others are secondary, but must still
     17 work correctly.
     18 
     19 - Use of gcc-specific and C99 constructs is allowed.
     20