Home
last modified time | relevance | path

Searched refs:m_mut (Results 1 – 11 of 11) sorted by relevance

/third_party/boost/boost/interprocess/sync/
Dinterprocess_upgradable_mutex.hpp217 interprocess_mutex m_mut; member in boost::interprocess::interprocess_upgradable_mutex
293 scoped_lock_t lck(m_mut); in lock()
316 scoped_lock_t lck(m_mut, try_to_lock); in try_lock()
334 scoped_lock_t lck(m_mut, abs_time); in timed_lock()
369 scoped_lock_t lck(m_mut); in unlock()
378 scoped_lock_t lck(m_mut); in lock_upgradable()
396 scoped_lock_t lck(m_mut, try_to_lock); in try_lock_upgradable()
420 scoped_lock_t lck(m_mut, abs_time); in timed_lock_upgradable()
448 scoped_lock_t lck(m_mut); in unlock_upgradable()
460 scoped_lock_t lck(m_mut); in lock_sharable()
[all …]
Dnamed_mutex.hpp126 { return m_mut; } in internal_mutex()
128 internal_mutex_type m_mut; member in boost::interprocess::named_mutex
136 : m_mut(create_only_t(), name, perm) in named_mutex()
140 : m_mut(open_or_create_t(), name, perm) in named_mutex()
144 : m_mut(open_only_t(), name) in named_mutex()
148 { ipcdetail::interprocess_tester::dont_close_on_destruction(m_mut); } in dont_close_on_destruction()
154 { m_mut.lock(); } in lock()
157 { m_mut.unlock(); } in unlock()
160 { return m_mut.try_lock(); } in try_lock()
163 { return m_mut.timed_lock(abs_time); } in timed_lock()
Dnamed_recursive_mutex.hpp115 impl_t m_mut; member in boost::interprocess::named_recursive_mutex
126 { ipcdetail::interprocess_tester::dont_close_on_destruction(m_mut); } in dont_close_on_destruction()
129 : m_mut (create_only, name, perm) in named_recursive_mutex()
133 : m_mut (open_or_create, name, perm) in named_recursive_mutex()
137 : m_mut (open_only, name) in named_recursive_mutex()
141 { m_mut.lock(); } in lock()
144 { m_mut.unlock(); } in unlock()
147 { return m_mut.try_lock(); } in try_lock()
150 { return m_mut.timed_lock(abs_time); } in timed_lock()
Dinterprocess_sharable_mutex.hpp128 interprocess_mutex m_mut; member in boost::interprocess::interprocess_sharable_mutex
181 scoped_lock_t lck(m_mut); in lock()
204 scoped_lock_t lck(m_mut, try_to_lock); in try_lock()
220 scoped_lock_t lck(m_mut, abs_time); in timed_lock()
259 scoped_lock_t lck(m_mut); in unlock()
268 scoped_lock_t lck(m_mut); in lock_sharable()
284 scoped_lock_t lck(m_mut, try_to_lock); in try_lock_sharable()
303 scoped_lock_t lck(m_mut, abs_time); in timed_lock_sharable()
329 scoped_lock_t lck(m_mut); in unlock_sharable()
Dinterprocess_condition_any.hpp74 mutex_type &get_mutex() { return m_mut; } in get_mutex()
78 mutex_type m_mut; member in boost::interprocess::interprocess_condition_any::members
/third_party/boost/libs/container/src/
Dsynchronized_pool_resource.cpp25 thread_mutex &m_mut; member in __anon9b10384d0111::thread_mutex_lock
29 : m_mut(m) in thread_mutex_lock()
31 m_mut.lock(); in thread_mutex_lock()
36 m_mut.unlock(); in ~thread_mutex_lock()
47 : m_mut(), m_pool_resource(opts, upstream) in synchronized_pool_resource()
51 : m_mut(), m_pool_resource() in synchronized_pool_resource()
55 : m_mut(), m_pool_resource(upstream) in synchronized_pool_resource()
59 : m_mut(), m_pool_resource(opts) in synchronized_pool_resource()
67 thread_mutex_lock lck(m_mut); (void)lck; in release()
79 thread_mutex_lock lck(m_mut); (void)lck; in do_allocate()
[all …]
/third_party/boost/boost/interprocess/sync/posix/
Drecursive_mutex.hpp72 pthread_mutex_t m_mut; member in boost::interprocess::ipcdetail::posix_recursive_mutex
78 mutex_initializer mut(m_mut, mut_attr); in posix_recursive_mutex()
84 int res = pthread_mutex_destroy(&m_mut); in ~posix_recursive_mutex()
90 if (pthread_mutex_lock(&m_mut) != 0) in lock()
96 int res = pthread_mutex_trylock(&m_mut); in try_lock()
112 int res = pthread_mutex_timedlock(&m_mut, &ts); in timed_lock()
127 res = pthread_mutex_unlock(&m_mut); in unlock()
Dmutex.hpp78 pthread_mutex_t m_mut; member in boost::interprocess::ipcdetail::posix_mutex
84 mutex_initializer mut(m_mut, mut_attr); in posix_mutex()
90 int res = pthread_mutex_destroy(&m_mut); in ~posix_mutex()
96 if (pthread_mutex_lock(&m_mut) != 0) in lock()
102 int res = pthread_mutex_trylock(&m_mut); in try_lock()
117 int res = pthread_mutex_timedlock(&m_mut, &ts); in timed_lock()
132 res = pthread_mutex_unlock(&m_mut); in unlock()
Dcondition.hpp172 pthread_mutex_t* pmutex = &mut.m_mut; in do_wait()
182 pthread_mutex_t* pmutex = &mut.m_mut; in do_timed_wait()
/third_party/boost/boost/container/detail/
Dthread_mutex.hpp52 BOOST_VERIFY(pthread_mutex_init(&m_mut, 0) == 0); in thread_mutex()
57 BOOST_VERIFY(pthread_mutex_destroy(&m_mut) == 0); in ~thread_mutex()
62 BOOST_VERIFY(pthread_mutex_lock( &m_mut) == 0); in lock()
67 BOOST_VERIFY(pthread_mutex_unlock(&m_mut) == 0); in unlock()
74 pthread_mutex_t m_mut; member in boost::container::dtl::thread_mutex
/third_party/boost/boost/container/pmr/
Dsynchronized_pool_resource.hpp64 dtl::thread_mutex m_mut; member in boost::container::pmr::synchronized_pool_resource