Home
last modified time | relevance | path

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

/aosp12/art/test/1995-final-virtual-structural-multithread/src/art/
H A DTest1995.java147 CountDownLatch cdl = new CountDownLatch(num_threads); in startThreads() local
150 res[i] = new MyThread(cdl, i); in startThreads()
153 cdl.await(); in startThreads()
/aosp12/art/test/2001-virtual-structural-multithread/src-art/art/
H A DTest2001.java209 CountDownLatch cdl = new CountDownLatch(num_threads); in startThreads() local
212 res[i] = new MyThread(cdl, i); in startThreads()
215 cdl.await(); in startThreads()
/aosp12/art/test/1979-threaded-structural-transformation/src/art/
H A DTest1979.java136 final CountDownLatch cdl = new CountDownLatch(1); in doTest() local
153 cdl.countDown(); in doTest()
167 cdl.await(); in doTest()
/aosp12/art/test/2005-pause-all-redefine-multithreaded/src/art/
H A DTest2005.java148 CountDownLatch cdl = new CountDownLatch(num_threads); in startThreads() local
151 res[i] = new MyThread(cdl, i); in startThreads()
154 cdl.await(); in startThreads()
/aosp12/art/test/1971-multi-force-early-return/src/art/
H A DTest1971.java105 final CountDownLatch cdl = new CountDownLatch(1); in run() local
112 cdl.await(); in run()
141 cdl.countDown(); in run()
/aosp12/art/test/925-threadgroups/src/art/
H A DTest925.java56 final CountDownLatch cdl = new CountDownLatch(1); in doTest() local
62 cdl.await(); in doTest()
69 cdl.countDown(); in doTest()
/aosp12/art/test/1974-resize-array/src/art/
H A DTest1974.java222 final CountDownLatch cdl = new CountDownLatch(1); in runMultiThreadLocal() local
254 cdl.await(); in runMultiThreadLocal()
268 cdl.countDown(); in runMultiThreadLocal()
280 final CountDownLatch cdl = new CountDownLatch(1); in runWithLocks() local
312 cdl.await(); in runWithLocks()
350 cdl.countDown(); in runWithLocks()
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DMenuExecutor.java317 ConfirmDialogListener cdl = new ConfirmDialogListener(action, listener); in onMenuClicked() local
320 .setOnCancelListener(cdl) in onMenuClicked()
321 .setPositiveButton(R.string.ok, cdl) in onMenuClicked()
322 .setNegativeButton(R.string.cancel, cdl) in onMenuClicked()
/aosp12/art/test/125-gc-and-classloading/src/
H A DMain.java23 CountDownLatch cdl = new CountDownLatch(1); in main() local
24 GcThread gcThread = new GcThread(cdl); in main()
25 ClassLoadingThread classLoadingThread = new ClassLoadingThread(cdl); in main()
34 CountDownLatch cdl; field in Main.GcThread
36 GcThread(CountDownLatch cdl) { in GcThread() argument
37 this.cdl = cdl; in GcThread()
44 cdl.countDown(); in run()
51 CountDownLatch cdl; field in Main.ClassLoadingThread
53 ClassLoadingThread(CountDownLatch cdl) { in ClassLoadingThread() argument
54 this.cdl = cdl; in ClassLoadingThread()
[all …]
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
H A DAccountManagerServiceTest.java174 CountDownLatch cdl = new CountDownLatch(1); in tearDown() local
179 cdl.countDown(); in tearDown()
181 cdl.await(1, TimeUnit.SECONDS); in tearDown()