HomeSort by relevance Sort by last modified time
    Searched refs:ALLOC_DONT_TRACK (Results 1 - 25 of 26) sorted by null

1 2

  /dalvik/vm/alloc/
Alloc.h 27 ALLOC_DONT_TRACK = 0x01, /* don't add to internal tracking list */
50 * flags is ALLOC_DONT_TRACK.
60 * flags is ALLOC_DONT_TRACK.
68 * This is called automatically by dvmMalloc() unless ALLOC_DONT_TRACK
Heap.cpp 329 * Use ALLOC_DONT_TRACK when we either don't want to track an allocation
381 if ((flags & ALLOC_DONT_TRACK) == 0) {
  /dalvik/vm/mterp/c/
OP_NEW_ARRAY.cpp 29 newArray = dvmAllocArrayByClass(arrayClass, length, ALLOC_DONT_TRACK);
OP_NEW_INSTANCE.cpp 42 newObj = dvmAllocObject(clazz, ALLOC_DONT_TRACK);
gotoTargets.cpp 74 newArray = dvmAllocArrayByClass(arrayClass, vsrc1, ALLOC_DONT_TRACK);
    [all...]
  /dalvik/vm/native/
java_lang_Object.cpp 33 Object* clone = dvmCloneObject(thisPtr, ALLOC_DONT_TRACK);
  /dalvik/vm/test/
TestIndirectRefTable.cpp 69 Object* obj0 = dvmAllocObject(clazz, ALLOC_DONT_TRACK);
70 Object* obj1 = dvmAllocObject(clazz, ALLOC_DONT_TRACK);
71 Object* obj2 = dvmAllocObject(clazz, ALLOC_DONT_TRACK);
72 Object* obj3 = dvmAllocObject(clazz, ALLOC_DONT_TRACK);
353 Object* obj0 = dvmAllocObject(clazz, ALLOC_DONT_TRACK);
  /dalvik/vm/mterp/x86/
OP_NEW_ARRAY.S 56 movl $$ALLOC_DONT_TRACK,OUT_ARG2(%esp)
OP_NEW_INSTANCE.S 30 movl $$ALLOC_DONT_TRACK,OUT_ARG1(%esp)
  /dalvik/vm/compiler/codegen/x86/
LowerObject.cpp 334 //prepare to call dvmAllocObject, inputs: resolved class & flag ALLOC_DONT_TRACK
338 move_imm_to_mem(OpndSize_32, ALLOC_DONT_TRACK, 4, PhysicalReg_ESP, true);
405 //prepare to call dvmAllocArrayByClass with inputs: resolved class, array length, flag ALLOC_DONT_TRACK
411 move_imm_to_mem(OpndSize_32, ALLOC_DONT_TRACK, 8, PhysicalReg_ESP, true);
472 //prepare to call dvmAllocArrayByClass with inputs: classObject, length, flag ALLOC_DONT_TRACK
476 move_imm_to_mem(OpndSize_32, ALLOC_DONT_TRACK, 8, PhysicalReg_ESP, true);
  /dalvik/vm/mterp/armv5te/
OP_FILLED_NEW_ARRAY.S 35 mov r2, #ALLOC_DONT_TRACK @ r2<- alloc flags
  /dalvik/vm/mterp/mips/
OP_FILLED_NEW_ARRAY.S 36 li a2, ALLOC_DONT_TRACK # a2 <- alloc flags
  /dalvik/vm/mterp/common/
asm-constants.h 295 MTERP_CONSTANT(ALLOC_DONT_TRACK, 0x01)
  /dalvik/vm/
Jni.cpp     [all...]
  /dalvik/vm/mterp/out/
InterpC-allstubs.cpp     [all...]
InterpC-portable.cpp     [all...]
InterpC-mips.cpp     [all...]
InterpC-x86.cpp     [all...]
InterpAsm-armv5te-vfp.S     [all...]
InterpAsm-armv5te.S     [all...]
InterpAsm-armv7-a-neon.S     [all...]
InterpAsm-armv7-a.S     [all...]
InterpAsm-x86.S     [all...]
  /dalvik/vm/compiler/codegen/arm/
CodegenDriver.cpp     [all...]
  /dalvik/vm/compiler/codegen/mips/
CodegenDriver.cpp     [all...]

Completed in 516 milliseconds

1 2