Home
last modified time | relevance | path

Searched refs:try_lock_until (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/libcxx/include/__mutex/
H A Dunique_lock.h55 : __m_(std::addressof(__m)), __owns_(__m.try_lock_until(__t)) {} in unique_lock()
92 bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __t);
147 bool unique_lock<_Mutex>::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t) { in try_lock_until() function
152 __owns_ = __m_->try_lock_until(__t); in try_lock_until()
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dshared_mutex59 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
105 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
242 return try_lock_until(chrono::steady_clock::now() + __rel_time);
246 try_lock_until(const chrono::time_point<_Clock, _Duration>& __abs_time)
266 bool shared_timed_mutex::try_lock_until(const chrono::time_point<_Clock, _Duration>& __abs_time) {
376 …_LIBCPP_HIDE_FROM_ABI bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __abs_time);
434 bool shared_lock<_Mutex>::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t) {
436 __throw_system_error(EPERM, "shared_lock::try_lock_until: references null mutex");
438 __throw_system_error(EDEADLK, "shared_lock::try_lock_until: already locked");
H A Dmutex67 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
85 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
154 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
257 return try_lock_until(chrono::steady_clock::now() + __d);
261 try_lock_until(const chrono::time_point<_Clock, _Duration>& __t);
266 bool timed_mutex::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t) {
296 return try_lock_until(chrono::steady_clock::now() + __d);
300 try_lock_until(const chrono::time_point<_Clock, _Duration>& __t);
305 bool recursive_timed_mutex::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t) {