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