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.cc179 NATIVE_METHOD(DdmVmInternal, enableRecentAllocations, "(Z)V"),
180 FAST_NATIVE_METHOD(DdmVmInternal, getRecentAllocations, "()[B"),
181 FAST_NATIVE_METHOD(DdmVmInternal, getRecentAllocationStatus, "()Z"),
182 NATIVE_METHOD(DdmVmInternal, getStackTraceById, "(I)[Ljava/lang/StackTraceElement;"),
183 NATIVE_METHOD(DdmVmInternal, getThreadStats, "()[B"),
184 FAST_NATIVE_METHOD(DdmVmInternal, heapInfoNotify, "(I)Z"),
185 NATIVE_METHOD(DdmVmInternal, heapSegmentNotify, "(IIZ)Z"),
186 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.java180 DdmVmInternal.threadNotify(true); in run()
187 DdmVmInternal.threadNotify(false); in run()
206 if (!DdmVmInternal.heapInfoNotify(HPIF_WHEN_NOW)) { in run()