/art/test/1900-track-alloc/src/art/ |
D | Test1900.java | 37 public static void runConcurrent(Runnable... rs) throws Exception { in runConcurrent() argument 38 final CountDownLatch latch = new CountDownLatch(rs.length); in runConcurrent() 39 Thread[] thrs = new Thread[rs.length]; in runConcurrent() 40 for (int i = 0; i < rs.length; i++) { in runConcurrent() 41 final Runnable r = rs[i]; in runConcurrent() 76 Runnable[] rs = new Runnable[100]; in run() local 77 Arrays.fill(rs, add10); in run() 78 runConcurrent(rs); in run()
|
/art/test/1963-add-to-dex-classloader-in-memory/ |
D | add_to_loader.cc | 38 template <typename T, typename... Rest> static void Dealloc(T* t, Rest... rs) { in Dealloc() argument 40 Dealloc(rs...); in Dealloc()
|
/art/test/1964-add-to-dex-classloader-file/ |
D | add_to_loader.cc | 37 template <typename T, typename... Rest> static void Dealloc(T* t, Rest... rs) { in Dealloc() argument 39 Dealloc(rs...); in Dealloc()
|
/art/test/1957-error-ext/ |
D | lasterror.cc | 49 static void Dealloc(T* t, Rest... rs) { in Dealloc() argument 51 Dealloc(rs...); in Dealloc()
|
/art/test/ti-agent/ |
D | jvmti_helper.h | 86 template <typename T, typename... Rest> void Dealloc(jvmtiEnv* env, T* t, Rest... rs) { in Dealloc() argument 88 Dealloc(env, rs...); in Dealloc()
|
/art/test/1951-monitor-enter-no-suspend/ |
D | raw_monitor.cc | 37 static void Dealloc(T* t, Rest... rs) { in Dealloc() argument 39 Dealloc(rs...); in Dealloc()
|
/art/tools/jvmti-agents/dump-jvmti-state/ |
D | dump-jvmti.cc | 33 template <typename T, typename... Rest> static void Dealloc(jvmtiEnv* env, T* t, Rest... rs) { in Dealloc() argument 35 Dealloc(env, rs...); in Dealloc()
|
/art/test/1946-list-descriptors/ |
D | descriptors.cc | 39 static void Dealloc(T* t, Rest... rs) { in Dealloc() argument 41 Dealloc(rs...); in Dealloc()
|
/art/test/1900-track-alloc/ |
D | alloc.cc | 39 static void Dealloc(T* t, Rest... rs) { in Dealloc() argument 41 Dealloc(rs...); in Dealloc()
|
/art/tools/jvmti-agents/list-extensions/ |
D | list-extensions.cc | 34 template <typename T, typename... Rest> void Dealloc(jvmtiEnv* env, T* t, Rest... rs) { in Dealloc() argument 36 Dealloc(env, rs...); in Dealloc()
|
/art/test/1940-ddms-ext/ |
D | ddm_ext.cc | 48 static void Dealloc(T* t, Rest... rs) { in Dealloc() argument 50 Dealloc(rs...); in Dealloc()
|
/art/test/1974-resize-array/ |
D | resize_array.cc | 47 template <typename T, typename... Rest> static void Dealloc(T* t, Rest... rs) { in Dealloc() argument 49 Dealloc(rs...); in Dealloc()
|