Home
last modified time | relevance | path

Searched refs:Wait (Results 1 – 25 of 158) sorted by relevance

1234567

/aosp12/art/runtime/
H A Dmonitor_test.cc95 monitor_test_->barrier_->Wait(self); // Let the other thread know we're done. in Run()
104 Monitor::Wait(self, monitor_test_->object_.Get(), millis_, 0, true, in Run()
114 monitor_test_->complete_barrier_->Wait(self); // Wait for test completion. in Run()
141 monitor_test_->barrier_->Wait(self); // Wait for the other thread to set up the monitor. in Run()
149 Monitor::Wait(self, monitor_test_->object_.Get(), millis_, 0, true, in Run()
159 monitor_test_->complete_barrier_->Wait(self); // Wait for test completion. in Run()
179 monitor_test_->barrier_->Wait(self); // Wait for the other thread to set up the monitor. in Run()
194 Monitor::Wait(self, monitor_test_->object_.Get(), 10, 0, true, in Run()
203 monitor_test_->complete_barrier_->Wait(self); // Wait for test completion. in Run()
280 test->complete_barrier_->Wait(self); in CommonWaitSetup()
[all …]
H A Dthread_pool_test.cc72 thread_pool.Wait(self, true, false); in TEST_F()
99 thread_pool.Wait(self, false, false); in TEST_F()
117 thread_pool.Wait(self, false, false); // We should not deadlock here. in TEST_F()
122 thread_pool.Wait(self, /* do_work= */ true, false); in TEST_F()
159 thread_pool.Wait(self, true, false); in TEST_F()
198 thread_pool.Wait(self, false, false); in TEST_F()
210 thread_pool.Wait(self, false, false); in TEST_F()
H A Dbarrier_test.cc38 barrier_->Wait(self); in Run()
78 barrier.Wait(self); in TEST_F()
80 thread_pool.Wait(self, true, false); in TEST_F()
H A Dbarrier.cc43 void Barrier::Wait(Thread* self) { in Wait() function in art::Barrier
68 condition_->Wait(self); in Increment()
/aosp12/art/test/923-monitors/
H A Dexpected-stdout.txt13 Wait
15 Wait
17 Wait
20 Wait
/aosp12/art/test/132-daemon-locks-shutdown/src/
H A DMain.java28 Thread t = new Thread(new Wait(sync)); in main()
34 private static class Wait implements Runnable { class in Main
37 public Wait(Object obj) { in Wait() method in Main.Wait
/aosp12/art/openjdkjvmti/
H A Dti_monitor.cc138 bool Wait(art::Thread* self) { in Wait() function in openjdkjvmti::JvmtiMonitor
142 return Wait(self, wait_without_timeout); in Wait()
145 bool Wait(art::Thread* self, uint64_t timeout_in_ms) { in Wait() function in openjdkjvmti::JvmtiMonitor
149 return Wait(self, wait_with_timeout); in Wait()
170 bool Wait(art::Thread* self, T how_to_wait) { in Wait() function in openjdkjvmti::JvmtiMonitor
310 ? monitor->Wait(self, static_cast<uint64_t>(millis)) in RawMonitorWait()
311 : monitor->Wait(self); in RawMonitorWait()
H A Djvmti_weak_table-inl.h93 Wait(self); in Remove()
101 Wait(self); in RemoveLocked()
138 Wait(self); in Set()
146 Wait(self); in SetLocked()
331 Wait(self);
392 Wait(self);
/aosp12/frameworks/opt/vcard/tests/res/raw/
H A Dv30_pause_wait.vcf3 FN:Pause Wait
4 N:Pause;Wait;;;
/aosp12/build/soong/ui/build/
H A Dexec.go109 func (c *Cmd) Wait() error { func
110 err := c.Cmd.Wait()
140 c.reportError(c.Wait())
201 err = c.Wait()
/aosp12/system/core/fs_mgr/
H A Dfile_wait.cpp75 bool Wait();
127 bool OneShotInotify::Wait() { in Wait() function in android::fs_mgr::OneShotInotify
218 return inotify.Wait(); in WaitForFile()
228 return inotify.Wait(); in WaitForFileDeleted()
/aosp12/hardware/qcom/sm7250/display/sdm/libs/utils/
H A Dfence.cpp107 if (ignore_signaled && (Fence::Wait(fence, 0) == kErrorNone)) { in Merge()
117 DisplayError Fence::Wait(const shared_ptr<Fence> &fence) { in Wait() function in sdm::Fence
123 DisplayError Fence::Wait(const shared_ptr<Fence> &fence, int timeout) { in Wait() function in sdm::Fence
/aosp12/system/unwinding/libunwindstack/
H A DThreadUnwinder.cpp62 if (entry->Wait(WAIT_FOR_UNWIND_TO_COMPLETE)) { in SignalHandler()
117 bool wait_completed = entry->Wait(WAIT_FOR_UCONTEXT); in SendSignalToThread()
174 if (!entry->Wait(WAIT_FOR_THREAD_TO_RESTART)) { in UnwindWithSignal()
/aosp12/system/core/fs_mgr/libdm/
H A Dutility.cpp51 return WaitResult::Wait; in WaitForFile()
64 return WaitResult::Wait; in WaitForFileDeleted()
/aosp12/art/runtime/gc/
H A Dtask_processor_test.cc84 thread_pool.Wait(self, true, false); in TEST_F()
98 thread_pool.Wait(self, true, false); in TEST_F()
142 thread_pool.Wait(self, true, false); in TEST_F()
/aosp12/system/unwinding/libbacktrace/
H A DBacktraceCurrent.cpp152 if (entry->Wait(2)) { in SignalHandler()
200 bool wait_completed = entry->Wait(1); in UnwindThread()
227 if (!entry->Wait(3)) { in UnwindThread()
/aosp12/hardware/qcom/sm7250/display/sdm/include/utils/
H A Dfence.h85 static DisplayError Wait(const shared_ptr<Fence> &fence);
86 static DisplayError Wait(const shared_ptr<Fence> &fence, int timeout);
H A Dlocker.h94 locker_.Wait(); in SequenceWaitScopeLock()
153 void Wait() { pthread_cond_wait(&condition_, &mutex_); } in Wait() function
/aosp12/packages/apps/Launcher3/tests/src/com/android/launcher3/ui/widget/
H A DRequestPinItemTest.java43 import com.android.launcher3.util.Wait;
44 import com.android.launcher3.util.Wait.Condition;
169 Wait.atMost("", new ItemSearchCondition(itemMatcher), DEFAULT_ACTIVITY_TIMEOUT, in runTest()
/aosp12/packages/apps/Launcher3/quickstep/tests/src/com/android/quickstep/
H A DNavigationModeSwitchRule.java38 import com.android.launcher3.util.Wait;
194 Wait.atMost("Couldn't switch to " + overlayPackage,
197 Wait.atMost(() -> "Switching nav mode: "
/aosp12/hardware/qcom/display/msm8909/sdm/include/utils/
H A Dlocker.h93 locker_.Wait(); in SequenceWaitScopeLock()
141 void Wait() { pthread_cond_wait(&condition_, &mutex_); } in Wait() function
/aosp12/hardware/qcom/display/msm8909w_3100/sdm/include/utils/
H A Dlocker.h93 locker_.Wait(); in SequenceWaitScopeLock()
141 void Wait() { pthread_cond_wait(&condition_, &mutex_); } in Wait() function
/aosp12/hardware/qcom/display/msm8996/sdm/include/utils/
H A Dlocker.h93 locker_.Wait(); in SequenceWaitScopeLock()
141 void Wait() { pthread_cond_wait(&condition_, &mutex_); } in Wait() function
/aosp12/hardware/qcom/display/msm8998/sdm/include/utils/
H A Dlocker.h93 locker_.Wait(); in SequenceWaitScopeLock()
141 void Wait() { pthread_cond_wait(&condition_, &mutex_); } in Wait() function
/aosp12/hardware/qcom/sdm845/display/sdm/include/utils/
H A Dlocker.h94 locker_.Wait(); in SequenceWaitScopeLock()
145 void Wait() { pthread_cond_wait(&condition_, &mutex_); } in Wait() function

1234567