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;
167 bool try_lock() _LIBCPP_THREAD_SAFETY_ANNOTATION(try_acquire_capability(true));
172 bool try_lock_shared() _LIBCPP_THREAD_SAFETY_ANNOTATION(try_acquire_shared_capability(true));
193 _LIBCPP_INLINE_VISIBILITY bool try_lock() { return __base.try_lock(); }
198 _LIBCPP_INLINE_VISIBILITY bool try_lock_shared() { return __base.try_lock_shared(); }
219 bool try_lock();
222 bool
229 bool
235 bool try_lock_shared();
238 bool
245 bool
251 bool
287 bool
318 bool __owns_;
401 bool try_lock();
403 bool try_lock_for(const chrono::duration<Rep, Period>& __rel_time);
405 bool try_lock_until(const chrono::time_point<Clock, Duration>& __abs_time);
427 bool owns_lock() const _NOEXCEPT {return __owns_;}
430 explicit operator bool () const _NOEXCEPT {return __owns_;}
449 bool
462 bool
475 bool