Home
last modified time | relevance | path

Searched refs:defer_lock_t (Results 1 – 7 of 7) sorted by relevance

/third_party/boost/boost/thread/
Dlock_options.hpp14 struct defer_lock_t struct
24 BOOST_CONSTEXPR_OR_CONST defer_lock_t defer_lock = {};
Dsynchronized_value.hpp235 const_unique_lock_ptr(T const& val, Lockable & mtx, defer_lock_t) BOOST_NOEXCEPT in const_unique_lock_ptr() argument
327 unique_lock_ptr(T & value, Lockable & mtx, defer_lock_t) BOOST_NOEXCEPT in unique_lock_ptr() argument
712 unique_lock_ptr<T,Lockable> unique_synchronize(defer_lock_t tag) in unique_synchronize()
716 const_unique_lock_ptr<T,Lockable> unique_synchronize(defer_lock_t tag) const in unique_synchronize()
Dlock_factories.hpp32 unique_lock<Lockable> make_unique_lock(Lockable& mtx, defer_lock_t) in make_unique_lock() argument
Dlock_types.hpp133 unique_lock(Mutex& m_, defer_lock_t)BOOST_NOEXCEPT: in unique_lock() argument
529 shared_lock(Mutex& m_,defer_lock_t) BOOST_NOEXCEPT: in shared_lock() argument
792 upgrade_lock(Mutex& m_, defer_lock_t)BOOST_NOEXCEPT: in upgrade_lock() argument
1147 try_lock_wrapper(Mutex& m_,defer_lock_t): in try_lock_wrapper() argument
/third_party/skia/third_party/externals/angle2/src/common/
DSynchronizedValue.h102 ConstUniqueLockPtr(const T &value, Lockable &mutex, std::defer_lock_t) noexcept
144 UniqueLockPtr(T &value, Lockable &mutex, std::defer_lock_t) noexcept
/third_party/boost/libs/thread/doc/
Dmutex_concepts.qbk973 struct defer_lock_t {};
976 constexpr defer_lock_t defer_lock;
985 struct defer_lock_t {};
988 const defer_lock_t defer_lock;
994 *`defer_lock_t`: is used to construct the scoped lock without locking it.
1268 unique_lock(Lockable& m_,defer_lock_t) noexcept;
1383 [section:constructor_defer `unique_lock(Lockable & m,boost::defer_lock_t)`]
1635 shared_lock(Lockable& m_,defer_lock_t);
1738 [section:constructor_defer `shared_lock(Lockable & m,boost::defer_lock_t)`]
1877 upgrade_lock(mutex_type& m, defer_lock_t) noexcept;
[all …]
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/cache/
Dcache_client.cc422 std::unique_lock lock(mux_, std::defer_lock_t()); in SyncFlush()