Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DWatchdogDiagnosticsTest.java108 TestThread2 thread2 = new TestThread2(heldLock2, waitLock); in printAnnotatedStack() local
111 thread2.start(); in printAnnotatedStack()
112 while(!thread2.inY) { in printAnnotatedStack()
126 while (thread2.getState() == Thread.State.RUNNABLE) { in printAnnotatedStack()
154 WatchdogDiagnostics.printAnnotatedStack(thread2, print); in printAnnotatedStack()
179 thread2.join(); in printAnnotatedStack()
/aosp12/system/extras/memory_replay/tests/
H A DThreadsTest.cpp53 Thread* thread2 = threads.CreateThread(901); in TEST() local
54 ASSERT_TRUE(thread2 != nullptr); in TEST()
65 ASSERT_EQ(thread2, found_thread2); in TEST()
72 thread2->SetAllocEntry(&thread_done); in TEST()
83 thread2->SetPending(); in TEST()
84 threads.Finish(thread2); in TEST()
/aosp12/art/test/033-class-init-deadlock/src/
H A DMain.java31 Thread thread1, thread2; in main() local
35 thread2 = new Thread() { public void run() { new B(); } }; in main()
37 thread2.start(); in main()
45 thread2.interrupt(); in main()
/aosp12/art/test/123-compiler-regressions-mt/src/
H A DMain.java37 test.thread2(); in b17689750TestVolatile()
51 test.thread2(); in b17689750TestMonitor()
68 void thread2() { in thread2() method in B17689750TestVolatile
98 void thread2() { in thread2() method in B17689750TestMonitor
/aosp12/art/test/144-static-field-sigquit/src/
H A DMain.java21 Thread thread2 = new Thread(new SynchronizedUse()); in main() local
26 thread2.start(); in main()
29 thread2.join(); in main()
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/am/
H A DActivityManagerInternalTest.java112 final CustomThread thread2 = new CustomThread(record2.networkStateLock); in verifyNetworkUpdatedProcStateSeq() local
113 thread2.startAndWait("Unexpected state for " + record2); in verifyNetworkUpdatedProcStateSeq()
129 thread2.assertWaiting("Unexpected state for " + record2); in verifyNetworkUpdatedProcStateSeq()
130 thread2.interrupt(); in verifyNetworkUpdatedProcStateSeq()
/aosp12/system/extras/simpleperf/
H A DRecordReadThread_test.cpp442 RecordReadThread thread2(128 * 1024, attr, 1, 1, 0, true, true); in TEST_F() local
443 ASSERT_TRUE(thread2.RegisterDataCallback(loop, []() { return true; })); in TEST_F()
444 read_records(thread2, received_records); in TEST_F()
/aosp12/art/tools/dmtracedump/
H A Dtracedump.cc795 static int32_t compareThreads(const void* thread1, const void* thread2) { in compareThreads() argument
797 ((const ThreadEntry*) thread2)->threadId; in compareThreads()
/aosp12/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp2690 MixerThread *thread2 = checkMixerThread_l(output2); in openDuplicateOutput() local
2692 if (thread1 == NULL || thread2 == NULL) { in openDuplicateOutput()
2700 thread->addOutputTrack(thread2); in openDuplicateOutput()