Home
last modified time | relevance | path

Searched refs:lock_type (Results 1 – 25 of 29) sorted by relevance

12

/third_party/boost/boost/thread/pthread/
Dcondition_variable.hpp187 template<typename lock_type>
188 void wait(lock_type& m) in wait()
192 thread_cv_detail::lock_on_exit<lock_type> guard; in wait()
212 template<typename lock_type,typename predicate_type>
213 void wait(lock_type& m,predicate_type pred) in wait()
222 template<typename lock_type>
223 bool timed_wait(lock_type& m,boost::system_time const& abs_time) in timed_wait()
245 template<typename lock_type>
246 bool timed_wait(lock_type& m,::boost::xtime const& abs_time) in timed_wait()
251 template<typename lock_type,typename duration_type>
[all …]
/third_party/boost/boost/thread/win32/
Dcondition_variable.hpp142 template<typename lock_type>
146 lock_type& _lock;
149 relocker(lock_type& lock_): in relocker()
255 template<typename lock_type>
256 bool do_wait_until(lock_type& lock, detail::internal_platform_timepoint const &timeout) in do_wait_until()
258 relocker<lock_type> locker(lock); in do_wait_until()
530 template<typename lock_type>
531 void wait(lock_type& m) in wait()
536 template<typename lock_type,typename predicate_type>
537 void wait(lock_type& m,predicate_type pred) in wait()
[all …]
/third_party/boost/libs/atomic/src/
Dlockpool.cpp56 typedef pthread_mutex_t lock_type; typedef
59 typedef lock_operations::storage_type lock_type;
64 padding_size = (sizeof(lock_type) <= BOOST_ATOMIC_CACHE_LINE_SIZE ?
65 (BOOST_ATOMIC_CACHE_LINE_SIZE - sizeof(lock_type)) :
66 (BOOST_ATOMIC_CACHE_LINE_SIZE - sizeof(lock_type) % BOOST_ATOMIC_CACHE_LINE_SIZE))
72 lock_type lock; in BOOST_ALIGNMENT()
80 lock_type lock; in BOOST_ALIGNMENT()
111 while (lock_operations::test_and_set(*static_cast< lock_type* >(m_lock), memory_order_acquire)) in scoped_lock()
117 while (!!lock_operations::load(*static_cast< lock_type* >(m_lock), memory_order_relaxed)); in scoped_lock()
123 lock_operations::clear(*static_cast< lock_type* >(m_lock), memory_order_release); in ~scoped_lock()
/third_party/boost/libs/interprocess/test/
Dmutex_test_template.hpp39 typedef boost::interprocess::scoped_lock<mutex_type> lock_type; typedef
48 lock_type lock(interprocess_mutex, boost::interprocess::defer_lock); in operator ()()
51 lock_type lock(interprocess_mutex); in operator ()()
138 typedef boost::interprocess::scoped_lock<mutex_type> lock_type; typedef
144 lock_type lock1(mx); in operator ()()
145 lock_type lock2(mx); in operator ()()
148 lock_type lock1(mx, defer_lock); in operator ()()
149 lock_type lock2(mx, defer_lock); in operator ()()
152 lock_type lock1(mx, try_to_lock); in operator ()()
153 lock_type lock2(mx, try_to_lock); in operator ()()
[all …]
/third_party/boost/boost/flyweight/detail/
Dflyweight_core.hpp68 typedef typename core::lock_type lock_type; in erase() typedef
70 lock_type lock(core::mutex());(void)lock; in erase()
106 typedef typename LockingPolicy::lock_type lock_type; typedef in boost::flyweights::detail::flyweight_core
181 lock_type lock(mutex());(void)lock; in insert_rep()
204 lock_type lock(mutex());(void)lock; in insert_value()
229 lock_type lock(mutex());(void)lock; in insert_rep()
248 lock_type lock(mutex());(void)lock; in insert_value()
/third_party/boost/libs/signals2/test/
Dmutex_test.cpp109 typedef typename boost::unique_lock<M> lock_type; typedef
118 lock_type lock(mutex, boost::defer_lock); in operator ()()
121 lock_type lock(mutex); in operator ()()
145 typedef typename boost::unique_lock<M> lock_type; typedef
154 lock_type lock(mutex, boost::try_to_lock); in operator ()()
158 lock_type lock(mutex, boost::defer_lock); in operator ()()
161 lock_type lock(mutex, boost::try_to_lock); in operator ()()
/third_party/boost/libs/thread/doc/
Dcondition_variables.qbk449 template<typename lock_type>
450 void wait(lock_type& lock);
452 template<typename lock_type,typename predicate_type>
453 void wait(lock_type& lock,predicate_type predicate);
455 template <class lock_type, class Clock, class Duration>
457 lock_type& lock,
460 template <class lock_type, class Clock, class Duration, class Predicate>
462 lock_type& lock,
467 template <class lock_type, class Rep, class Period>
469 lock_type& lock,
[all …]
/third_party/boost/libs/fiber/examples/
Dwork_stealing.cpp26 typedef std::unique_lock< std::mutex > lock_type; typedef
52 lock_type lk( mtx_count); in whatevah()
72 lock_type lk( mtx_count); in thread()
108lock_type/*< `lock_type` is typedef'ed as __unique_lock__< [@http://en.cppreference.com/w/cpp/thre… in main()
Dwork_sharing.cpp26 typedef std::unique_lock< std::mutex > lock_type; typedef
52 lock_type lk( mtx_count); in whatevah()
73 lock_type lk( mtx_count); in thread()
112lock_type/*< `lock_type` is typedef'ed as __unique_lock__< [@http://en.cppreference.com/w/cpp/thre… in main()
/third_party/boost/libs/thread/test/
Dtest_mutex.cpp30 typedef typename M::scoped_lock lock_type; typedef
39 lock_type lock(mutex, boost::defer_lock); in operator ()()
42 lock_type lock(mutex); in operator ()()
260 typedef typename M::scoped_lock lock_type; typedef
265 lock_type lock1(mx); in operator ()()
266 lock_type lock2(mx); in operator ()()
Dshared_mutex_locking_thread.hpp15 template<typename lock_type>
49 lock_type lock(rw_mutex); in operator ()()
/third_party/boost/boost/signals2/detail/
Dslot_call_iterator.hpp135 typedef garbage_collecting_lock<connection_body_base> lock_type; typedef in boost::signals2::detail::slot_call_iterator_t
137 void set_callable_iter(lock_type &lock, Iterator newValue) const in set_callable_iter()
156 lock_type lock(**iter); in lock_next_callable()
176 lock_type lock(**callable_iter); in lock_next_callable()
/third_party/boost/libs/fiber/performance/fiber/
Dskynet_stealing_join.cpp36 using lock_type = std::unique_lock< std::mutex >; typedef
70 lock_type lk( mtx); in thread()
98 lock_type lk( mtx); in main()
Dskynet_stealing_async.cpp36 using lock_type = std::unique_lock< std::mutex >; typedef
72 lock_type lk( mtx); in thread()
99 lock_type lk( mtx); in main()
Dskynet_stealing_detach.cpp36 using lock_type = std::unique_lock< std::mutex >; typedef
66 lock_type lk( mtx); in thread()
94 lock_type lk( mtx); in main()
Dskynet_shared_detach.cpp34 using lock_type = std::unique_lock< std::mutex >; typedef
66 lock_type lk( mtx); in thread()
94 lock_type lk( mtx); in main()
Dskynet_shared_join.cpp34 using lock_type = std::unique_lock< std::mutex >; typedef
70 lock_type lk( mtx); in thread()
98 lock_type lk( mtx); in main()
/third_party/ltp/testcases/kernel/device-drivers/locking/
Dlock_torture.sh68 lock_type="spin_lock spin_lock_irq rw_lock rw_lock_irq mutex_lock rwsem_lock"
73 for type in $lock_type; do
/third_party/boost/libs/fiber/performance/fiber/numa/
Dskynet_stealing_detach.cpp37 using lock_type = std::unique_lock< std::mutex >; typedef
74 lock_type lk( mtx); in thread()
106 lock_type lk( mtx); in main()
/third_party/boost/libs/fiber/test/
Dtest_mutex_dispatch.cpp198 typedef typename std::unique_lock< M > lock_type; typedef
205 lock_type lk(mtx, std::defer_lock); in operator ()()
208 lock_type lk(mtx); in operator ()()
222 typedef typename std::unique_lock< M > lock_type; typedef
246 typedef typename std::unique_lock< M > lock_type; typedef
250 lock_type lock1(mx); in operator ()()
251 lock_type lock2(mx); in operator ()()
Dtest_mutex_post.cpp198 typedef typename std::unique_lock< M > lock_type; typedef
205 lock_type lk(mtx, std::defer_lock); in operator ()()
208 lock_type lk(mtx); in operator ()()
222 typedef typename std::unique_lock< M > lock_type; typedef
246 typedef typename std::unique_lock< M > lock_type; typedef
250 lock_type lock1(mx); in operator ()()
251 lock_type lock2(mx); in operator ()()
/third_party/boost/boost/log/sources/
Dexception_handler_feature.hpp218 >::type lock_type; in handle_exception() typedef
219 lock_type lock(base_type::get_threading_model()); in handle_exception()
/third_party/glib/gio/
Dgwin32file-sync-stream.c60 DWORD lock_type);
74 DWORD lock_type);
308 DWORD lock_type) in _file_sync_stream_lock_region() argument
317 DWORD lock_type) in _file_sync_stream_unlock_region() argument
/third_party/boost/boost/thread/
Dlock_algorithms.hpp391 typedef typename std::iterator_traits<Iterator>::value_type lock_type; in try_lock_impl() typedef
392 unique_lock<lock_type> guard(*begin, try_to_lock); in try_lock_impl()
413 typedef typename std::iterator_traits<Iterator>::value_type lock_type; in lock_impl() typedef
426 unique_lock<lock_type> begin_lock(*begin, defer_lock); in lock_impl()
/third_party/boost/boost/flyweight/
Dno_locking.hpp29 typedef mutex_type lock_type; typedef

12