OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DdmVmInternal
(Results
1 - 2
of
2
) sorted by null
/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
DdmVmInternal.java
24
public class
DdmVmInternal
{
27
private
DdmVmInternal
() {}
/art/test/098-ddmc/src/
Main.java
32
Allocations empty = new Allocations(
DdmVmInternal
.getRecentAllocations());
36
System.out.println("status=" +
DdmVmInternal
.getRecentAllocationStatus());
37
DdmVmInternal
.enableRecentAllocations(true);
38
System.out.println("status=" +
DdmVmInternal
.getRecentAllocationStatus());
41
Allocations before = new Allocations(
DdmVmInternal
.getRecentAllocations());
54
Allocations after = new Allocations(
DdmVmInternal
.getRecentAllocations());
60
DdmVmInternal
.enableRecentAllocations(false);
61
System.out.println("status=" +
DdmVmInternal
.getRecentAllocationStatus());
62
Allocations reset = new Allocations(
DdmVmInternal
.getRecentAllocations());
66
DdmVmInternal
.enableRecentAllocations(false)
[
all
...]
Completed in 61 milliseconds