Lines Matching refs:bool
33 bool try_lock();
38 bool try_lock_shared();
56 bool try_lock();
58 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
60 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
65 bool try_lock_shared();
67 bool
70 bool
102 bool try_lock();
104 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
106 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
114 bool owns_lock() const noexcept;
115 explicit operator bool () const noexcept;
162 bool try_lock();
167 bool try_lock_shared();
188 _LIBCPP_INLINE_VISIBILITY bool try_lock() { return __base.try_lock(); }
193 _LIBCPP_INLINE_VISIBILITY bool try_lock_shared() { return __base.try_lock_shared(); }
214 bool try_lock();
217 bool
223 bool
229 bool try_lock_shared();
232 bool
238 bool
244 bool
280 bool
311 bool __owns_;
394 bool try_lock();
396 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
398 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
420 bool owns_lock() const _NOEXCEPT {return __owns_;}
423 explicit operator bool () const _NOEXCEPT {return __owns_;}
442 bool
455 bool
468 bool