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…
158 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS void wait(_Lock& __lock);
160 _LIBCPP_HIDE_FROM_ABI void wait(_Lock& __lock, _Predicate __pred);
179 …_LIBCPP_AVAILABILITY_SYNC _LIBCPP_HIDE_FROM_ABI bool wait(_Lock& __lock, stop_token __stoken, _Pre…
220 void condition_variable_any::wait(_Lock& __lock) {
225 __cv_.wait(__lk);
229 inline void condition_variable_any::wait(_Lock& __lock, _Predicate __pred) {
231 wait(__lock);
266 bool condition_variable_any::wait(_Lock& __user_lock, stop_token __stoken, _Predicate __pred) {
273 // notify_all, without waiting all the wait calls.
280 // The spec only says "Only the notification to unblock the wait needs to happen
294 // check and entering the wait.
303 __cv_.wait(__internal_lock2);