Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DWatchdogDiagnosticsTest.java107 TestThread1 thread1 = new TestThread1(heldLock1, heldLock2); in printAnnotatedStack() local
117 thread1.start(); in printAnnotatedStack()
118 while(!thread1.inB) { in printAnnotatedStack()
123 while (thread1.getState() == Thread.State.RUNNABLE) { in printAnnotatedStack()
135 WatchdogDiagnostics.printAnnotatedStack(thread1, print); in printAnnotatedStack()
178 thread1.join(); in printAnnotatedStack()
/aosp12/system/extras/memory_replay/tests/
H A DThreadsTest.cpp49 Thread* thread1 = threads.CreateThread(900); in TEST() local
50 ASSERT_TRUE(thread1 != nullptr); in TEST()
62 ASSERT_EQ(thread1, found_thread1); in TEST()
71 thread1->SetAllocEntry(&thread_done); in TEST()
75 thread1->SetPending(); in TEST()
76 threads.Finish(thread1); in TEST()
/aosp12/art/test/033-class-init-deadlock/src/
H A DMain.java31 Thread thread1, thread2; in main() local
34 thread1 = new Thread() { public void run() { new A(); } }; in main()
36 thread1.start(); in main()
44 thread1.interrupt(); in main()
/aosp12/art/test/123-compiler-regressions-mt/src/
H A DMain.java33 test.thread1(); in b17689750TestVolatile()
47 test.thread1(); in b17689750TestMonitor()
62 void thread1() { in thread1() method in B17689750TestVolatile
84 void thread1() { in thread1() method in B17689750TestMonitor
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/am/
H A DActivityManagerInternalTest.java110 final CustomThread thread1 = new CustomThread(record1.networkStateLock); in verifyNetworkUpdatedProcStateSeq() local
111 thread1.startAndWait("Unexpected state for " + record1); in verifyNetworkUpdatedProcStateSeq()
122 thread1.assertTerminated("Unexpected state for " + record1); in verifyNetworkUpdatedProcStateSeq()
124 thread1.mNotified); in verifyNetworkUpdatedProcStateSeq()
126 thread1.assertWaiting("Unexpected state for " + record1); in verifyNetworkUpdatedProcStateSeq()
127 thread1.interrupt(); in verifyNetworkUpdatedProcStateSeq()
/aosp12/art/test/144-static-field-sigquit/src/
H A DMain.java20 Thread thread1 = new Thread(new SigQuit()); in main() local
24 thread1.start(); in main()
28 thread1.join(); in main()
/aosp12/hardware/interfaces/power/stats/1.0/vts/functional/
H A DVtsHalPowerStatsV1_0TargetTest.cpp555 std::thread thread1 = std::thread(readEnergy, service_, std::rand() % 5000); in TEST_P() local
556 thread1.join(); in TEST_P()
/aosp12/art/tools/dmtracedump/
H A Dtracedump.cc795 static int32_t compareThreads(const void* thread1, const void* thread2) { in compareThreads() argument
796 return ((const ThreadEntry*) thread1)->threadId - in compareThreads()
/aosp12/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp2689 MixerThread *thread1 = checkMixerThread_l(output1); in openDuplicateOutput() local
2692 if (thread1 == NULL || thread2 == NULL) { in openDuplicateOutput()
2699 DuplicatingThread *thread = new DuplicatingThread(this, thread1, id, mSystemReady); in openDuplicateOutput()