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;
166 bool try_lock() _LIBCPP_THREAD_SAFETY_ANNOTATION(try_acquire_capability(true));
171 bool try_lock_shared() _LIBCPP_THREAD_SAFETY_ANNOTATION(try_acquire_shared_capability(true));
192 _LIBCPP_INLINE_VISIBILITY bool try_lock() { return __base.try_lock(); }
197 _LIBCPP_INLINE_VISIBILITY bool try_lock_shared() { return __base.try_lock_shared(); }
218 bool try_lock();
221 bool
228 bool
234 bool try_lock_shared();
237 bool
244 bool
250 bool
286 bool
317 bool __owns_;
400 bool try_lock();
402 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
404 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
426 bool owns_lock() const _NOEXCEPT {return __owns_;}
429 explicit operator bool () const _NOEXCEPT {return __owns_;}
448 bool
461 bool
474 bool