Home | History | Annotate | Download | only in src

Lines Matching defs:DdmVmInternal

37         Allocations empty = new Allocations(DdmVmInternal.getRecentAllocations());
41 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus());
42 DdmVmInternal.enableRecentAllocations(true);
43 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus());
46 Allocations before = new Allocations(DdmVmInternal.getRecentAllocations());
54 Allocations after = new Allocations(DdmVmInternal.getRecentAllocations());
62 DdmVmInternal.enableRecentAllocations(false);
63 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus());
64 Allocations reset = new Allocations(DdmVmInternal.getRecentAllocations());
68 DdmVmInternal.enableRecentAllocations(false);
69 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus());
70 DdmVmInternal.enableRecentAllocations(false);
71 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus());
74 DdmVmInternal.enableRecentAllocations(true);
75 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus());
79 Allocations first = new Allocations(DdmVmInternal.getRecentAllocations());
80 DdmVmInternal.enableRecentAllocations(true);
81 System.out.println("status=" + DdmVmInternal.getRecentAllocationStatus());
82 Allocations second = new Allocations(DdmVmInternal.getRecentAllocations());
86 DdmVmInternal.enableRecentAllocations(false);
87 Allocations goodbye = new Allocations(DdmVmInternal.getRecentAllocations());
179 private static class DdmVmInternal {
185 Class<?> c = Class.forName("org.apache.harmony.dalvik.ddmc.DdmVmInternal");