Lines Matching refs:DdmVmInternal
32 Allocations empty = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking()
36 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus()); in testRecentAllocationTracking()
37 DdmVmInternal.enableRecentAllocations(true); in testRecentAllocationTracking()
38 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus()); in testRecentAllocationTracking()
41 Allocations before = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking()
49 Allocations after = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking()
55 DdmVmInternal.enableRecentAllocations(false); in testRecentAllocationTracking()
56 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus()); in testRecentAllocationTracking()
57 Allocations reset = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking()
61 DdmVmInternal.enableRecentAllocations(false); in testRecentAllocationTracking()
62 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus()); in testRecentAllocationTracking()
63 DdmVmInternal.enableRecentAllocations(false); in testRecentAllocationTracking()
64 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus()); in testRecentAllocationTracking()
67 DdmVmInternal.enableRecentAllocations(true); in testRecentAllocationTracking()
68 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus()); in testRecentAllocationTracking()
72 Allocations first = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking()
73 DdmVmInternal.enableRecentAllocations(true); in testRecentAllocationTracking()
74 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus()); in testRecentAllocationTracking()
75 Allocations second = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking()
79 DdmVmInternal.enableRecentAllocations(false); in testRecentAllocationTracking()
80 Allocations goodbye = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking()
128 private static class DdmVmInternal { class in Main