Home
last modified time | relevance | path

Searched refs:try_lock_upgrade_for (Results 1 – 15 of 15) sorted by relevance

/third_party/boost/boost/thread/
Dpoly_shared_lockable.hpp70 virtual bool try_lock_upgrade_for(chrono::nanoseconds const & relative_time)=0;
72 bool try_lock_upgrade_for(chrono::duration<Rep, Period> const & rel_time) in try_lock_upgrade_for() function in boost::upgrade_poly_lockable
74 return try_lock_upgrade_for(chrono::duration_cast<chrono::nanoseconds>(rel_time)); in try_lock_upgrade_for()
Dpoly_shared_lockable_adapter.hpp87 bool try_lock_upgrade_for(chrono::nanoseconds const & rel_time) in try_lock_upgrade_for() function in boost::poly_upgrade_lockable_adapter
89 return this->mtx().try_lock_upgrade_for(rel_time); in try_lock_upgrade_for()
Dlockable_adapter.hpp150 bool try_lock_upgrade_for(chrono::duration<Rep, Period> const & rel_time) const in try_lock_upgrade_for() function in boost::upgrade_lockable_adapter
152 return this->lockable().try_lock_upgrade_for(rel_time); in try_lock_upgrade_for()
Dnull_mutex.hpp134 bool try_lock_upgrade_for(chrono::duration<Rep, Period> const &) in try_lock_upgrade_for() function in boost::null_mutex
Dlockable_concepts.hpp132 if (l.try_lock_upgrade_for(d)) return; in BOOST_CONCEPT_USAGE()
Dlock_types.hpp809 : m(&mtx), is_locked(mtx.try_lock_upgrade_for(d)) in upgrade_lock()
989 is_locked=m->try_lock_upgrade_for(rel_time); in try_lock_for()
/third_party/boost/libs/thread/test/sync/mutual_exclusion/locks/upgrade_lock/locking/
Dtry_lock_for_pass.cpp33 bool try_lock_upgrade_for(const boost::chrono::duration<Rep, Period>& rel_time) in try_lock_upgrade_for() function
/third_party/boost/libs/thread/doc/
Dshared_mutex_ref.qbk96 bool try_lock_upgrade_for(const chrono::duration<Rep, Period>& rel_time);
182 bool try_lock_upgrade_for(const chrono::duration<Rep, Period>& rel_time);
Dlockable_adapter.qbk105 bool try_lock_upgrade_for(TimeDuration const&t);
Dthread.qbk101 …thread.synchronization.mutex_concepts.upgrade_lockable.try_lock_upgrade_for `try_lock_upgrade_for`…
Dmutex_concepts.qbk614 [section:try_lock_upgrade_for `m.try_lock_upgrade_for(rel_time)`]
/third_party/boost/libs/thread/example/
Dshared_mutex.cpp363 if (mut.try_lock_upgrade_for(boost::chrono::microseconds(5))) in try_for_upgradable()
544 if (mut.try_lock_upgrade_for(boost::chrono::microseconds(5))) in try_for_counter_clockwise()
/third_party/boost/boost/thread/pthread/
Dshared_mutex.hpp404 bool try_lock_upgrade_for(const chrono::duration<Rep, Period>& rel_time) in try_lock_upgrade_for() function in boost::shared_mutex
/third_party/boost/boost/thread/v2/
Dshared_mutex.hpp568 bool try_lock_upgrade_for( in try_lock_upgrade_for() function in boost::thread_v2::upgrade_mutex
/third_party/boost/libs/thread/test/
Dtest_time_jumps.cpp1383 bool succeeded = m.try_lock_upgrade_for(Helper::waitDur); in testTryLockUpgradeFor()