Lines Matching refs:wait
33 void wait(unique_lock<mutex>& lock);
35 void wait(unique_lock<mutex>& lock, Predicate pred);
78 void wait(Lock& lock);
80 void wait(Lock& lock, Predicate pred);
106 …bool wait(Lock& lock, stop_token stoken, Predicate pred); // since C…
160 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS void wait(_Lock& __lock);
162 _LIBCPP_HIDE_FROM_ABI void wait(_Lock& __lock, _Predicate __pred);
181 …_LIBCPP_AVAILABILITY_SYNC _LIBCPP_HIDE_FROM_ABI bool wait(_Lock& __lock, stop_token __stoken, _Pre…
222 void condition_variable_any::wait(_Lock& __lock) {
227 __cv_.wait(__lk);
231 inline void condition_variable_any::wait(_Lock& __lock, _Predicate __pred) {
233 wait(__lock);
268 bool condition_variable_any::wait(_Lock& __user_lock, stop_token __stoken, _Predicate __pred) {
275 // notify_all, without waiting all the wait calls.
282 // The spec only says "Only the notification to unblock the wait needs to happen
296 // check and entering the wait.
305 __cv_.wait(__internal_lock2);