Home
last modified time | relevance | path

Searched refs:is_full_ (Results 1 – 3 of 3) sorted by relevance

/third_party/boost/boost/fiber/detail/
Dcontext_spinlock_queue.hpp53 bool is_full_() const noexcept { in is_full_() function in boost::fibers::detail::context_spinlock_queue
81 if ( is_full_() ) { in push()
/third_party/boost/boost/fiber/
Dbuffered_channel.hpp52 bool is_full_() const noexcept { in is_full_() function in boost::fibers::buffered_channel
129 if ( is_full_() ) { in try_push()
162 if ( is_full_() ) { in try_push()
196 if ( is_full_() ) { in push()
235 if ( is_full_() ) { in push()
291 if ( is_full_() ) { in push_wait_until()
339 if ( is_full_() ) { in push_wait_until()
/third_party/boost/libs/fiber/performance/thread/
Dbuffered_channel.hpp65 bool is_full_() { in is_full_() function in buffered_channel
188 if ( ! is_full_() ) { in push()
191 not_full_cnd_.wait( lk, [this]{ return is_closed() || ! is_full_(); }); in push()