Lines Matching refs:bool
32 bool try_lock();
37 bool try_lock_shared();
55 bool try_lock();
57 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
59 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
64 bool try_lock_shared();
66 bool
69 bool
101 bool try_lock();
103 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
105 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
113 bool owns_lock() const noexcept;
114 explicit operator bool () const noexcept;
170 bool try_lock();
175 bool try_lock_shared();
197 …_LIBCPP_HIDE_FROM_ABI bool try_lock() _LIBCPP_THREAD_SAFETY_ANNOTATION(__try_acquire_capability__(…
208 _LIBCPP_HIDE_FROM_ABI bool try_lock_shared()
234 bool try_lock() _LIBCPP_THREAD_SAFETY_ANNOTATION(__try_acquire_capability__(true));
236 _LIBCPP_HIDE_FROM_ABI bool try_lock_for(const chrono::duration<_Rep, _Period>& __rel_time)
241 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS bool
248 bool try_lock_shared() _LIBCPP_THREAD_SAFETY_ANNOTATION(__try_acquire_shared_capability__(true));
250 _LIBCPP_HIDE_FROM_ABI bool try_lock_shared_for(const chrono::duration<_Rep, _Period>& __rel_time)
255 _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS bool
262 bool shared_timed_mutex::try_lock_until(const chrono::time_point<_Clock, _Duration>& __abs_time) {
290 bool shared_timed_mutex::try_lock_shared_until(const chrono::time_point<_Clock, _Duration>& __abs_t…
316 bool __owns_;
368 _LIBCPP_HIDE_FROM_ABI bool try_lock();
370 _LIBCPP_HIDE_FROM_ABI bool try_lock_for(const chrono::duration<_Rep, _Period>& __rel_time);
372 …_LIBCPP_HIDE_FROM_ABI bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __abs_time);
389 _LIBCPP_HIDE_FROM_ABI bool owns_lock() const _NOEXCEPT { return __owns_; }
391 _LIBCPP_HIDE_FROM_ABI explicit operator bool() const _NOEXCEPT { return __owns_; }
408 bool shared_lock<_Mutex>::try_lock() {
419 bool shared_lock<_Mutex>::try_lock_for(const chrono::duration<_Rep, _Period>& __d) {
430 bool shared_lock<_Mutex>::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t) {