Lines Matching refs:DdmVmInternal

37         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()
69 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus()); in testRecentAllocationTracking()
70 DdmVmInternal.enableRecentAllocations(false); in testRecentAllocationTracking()
71 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus()); in testRecentAllocationTracking()
74 DdmVmInternal.enableRecentAllocations(true); in testRecentAllocationTracking()
75 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus()); in testRecentAllocationTracking()
79 Allocations first = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking()
80 DdmVmInternal.enableRecentAllocations(true); in testRecentAllocationTracking()
81 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus()); in testRecentAllocationTracking()
82 Allocations second = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking()
86 DdmVmInternal.enableRecentAllocations(false); in testRecentAllocationTracking()
87 Allocations goodbye = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking()
179 private static class DdmVmInternal { class in Main