Home
last modified time | relevance | path

Searched refs:DdmVmInternal (Results 1 – 4 of 4) sorted by relevance

/art/test/098-ddmc/src/
DMain.java37 Allocations empty = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking()
41 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus()); in testRecentAllocationTracking()
42 DdmVmInternal.enableRecentAllocations(true); in testRecentAllocationTracking()
43 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus()); in testRecentAllocationTracking()
46 Allocations before = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking()
54 Allocations after = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking()
62 DdmVmInternal.enableRecentAllocations(false); in testRecentAllocationTracking()
63 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus()); in testRecentAllocationTracking()
64 Allocations reset = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking()
68 DdmVmInternal.enableRecentAllocations(false); in testRecentAllocationTracking()
[all …]
/art/runtime/native/
Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc231 NATIVE_METHOD(DdmVmInternal, enableRecentAllocations, "(Z)V"),
232 FAST_NATIVE_METHOD(DdmVmInternal, getRecentAllocations, "()[B"),
233 FAST_NATIVE_METHOD(DdmVmInternal, getRecentAllocationStatus, "()Z"),
234 NATIVE_METHOD(DdmVmInternal, getStackTraceById, "(I)[Ljava/lang/StackTraceElement;"),
235 NATIVE_METHOD(DdmVmInternal, getThreadStats, "()[B"),
236 FAST_NATIVE_METHOD(DdmVmInternal, heapInfoNotify, "(I)Z"),
237 NATIVE_METHOD(DdmVmInternal, heapSegmentNotify, "(IIZ)Z"),
238 NATIVE_METHOD(DdmVmInternal, threadNotify, "(Z)V"),
/art/tools/ahat/src/test-dump/
DMain.java19 import org.apache.harmony.dalvik.ddmc.DdmVmInternal;
41 DdmVmInternal.enableRecentAllocations(true); in main()
/art/test/1940-ddms-ext/src-art/art/
DTest1940.java225 DdmVmInternal.threadNotify(true); in run()
232 DdmVmInternal.threadNotify(false); in run()
253 if (!DdmVmInternal.heapInfoNotify(HPIF_WHEN_NOW)) { in run()