Home
last modified time | relevance | path

Searched refs:try_unlock_shared_and_lock_for (Results 1 – 13 of 13) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/include/boost/thread/
Dpoly_shared_lockable.hpp87 virtual bool try_unlock_shared_and_lock_for(chrono::nanoseconds const & relative_time)=0;
89 bool try_unlock_shared_and_lock_for(chrono::duration<Rep, Period> const & rel_time) in try_unlock_shared_and_lock_for() function in boost::upgrade_poly_lockable
91 return try_unlock_shared_and_lock_for(chrono::duration_cast<chrono::nanoseconds>(rel_time)); in try_unlock_shared_and_lock_for()
Dpoly_shared_lockable_adapter.hpp105 bool try_unlock_shared_and_lock_for(chrono::nanoseconds const & rel_time) in try_unlock_shared_and_lock_for() function in boost::poly_upgrade_lockable_adapter
107 return this->mtx().try_unlock_shared_and_lock_for(rel_time); in try_unlock_shared_and_lock_for()
Dlockable_adapter.hpp166 bool try_unlock_shared_and_lock_for(chrono::duration<Rep, Period> const & rel_time) const in try_unlock_shared_and_lock_for() function in boost::upgrade_lockable_adapter
168 return this->lockable().try_unlock_shared_and_lock_for(rel_time); in try_unlock_shared_and_lock_for()
Dnull_mutex.hpp158 bool try_unlock_shared_and_lock_for(chrono::duration<Rep, Period> const &) in try_unlock_shared_and_lock_for() function in boost::null_mutex
Dlockable_concepts.hpp135 if (l.try_unlock_shared_and_lock_for(d)) return; in BOOST_CONCEPT_USAGE()
Dlock_types.hpp307 if (BOOST_THREAD_RV(sl).mutex()->try_unlock_shared_and_lock_for(rel_time)) in unique_lock()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/doc/
Dshared_mutex_ref.qbk106 bool try_unlock_shared_and_lock_for(const chrono::duration<Rep, Period>& rel_time);
193 bool try_unlock_shared_and_lock_for(const chrono::duration<Rep, Period>& rel_time);
Dthread.qbk122 …chronization.mutex_concepts.upgrade_lockable.try_unlock_shared_and_lock_for `try_unlock_shared_and…
Dmutex_concepts.qbk686 [section:try_unlock_shared_and_lock_for `m.try_unlock_shared_and_lock_for(rel_time)`]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/include/boost/thread/pthread/
Dshared_mutex.hpp556 try_unlock_shared_and_lock_for( in try_unlock_shared_and_lock_for() function in boost::shared_mutex
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/include/boost/thread/v2/
Dshared_mutex.hpp590 bool try_unlock_shared_and_lock_for( in try_unlock_shared_and_lock_for() function in boost::thread_v2::upgrade_mutex
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/example/
Dshared_mutex.cpp479 if (mut.try_unlock_shared_and_lock_for(boost::chrono::microseconds(5))) in try_for_clockwise()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/test/
Dtest_time_jumps.cpp1460 bool succeeded = m.try_unlock_shared_and_lock_for(Helper::waitDur); in testTryUnlockSharedAndLockFor()