Home
last modified time | relevance | path

Searched refs:doAllocate (Results 1 – 1 of 1) sorted by relevance

/art/test/1900-track-alloc/src/art/
DTest1900.java63 long abc = doAllocate(10); in run()
65 long def = doAllocate(10); in run()
75 Runnable add10 = () -> { long x = doAllocate(10); doDeallocate(x); }; in run()
87 h.val = doAllocate(100); in run()
111 abc = doAllocate(env1, 10); in run()
113 def = doAllocate(env2, 10); in run()
138 private static native long doAllocate(long jvmtienv, long size); in doAllocate() method in Test1900
139 private static long doAllocate(long size) { in doAllocate() method in Test1900
140 return doAllocate(getDefaultJvmtiEnv(), size); in doAllocate()