Home
last modified time | relevance | path

Searched refs:blocked_ (Results 1 – 5 of 5) sorted by relevance

/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dposix_signal_blocker.hpp35 : blocked_(false) in posix_signal_blocker()
39 blocked_ = (pthread_sigmask(SIG_BLOCK, &new_mask, &old_mask_) == 0); in posix_signal_blocker()
45 if (blocked_) in ~posix_signal_blocker()
52 if (!blocked_) in block()
56 blocked_ = (pthread_sigmask(SIG_BLOCK, &new_mask, &old_mask_) == 0); in block()
63 if (blocked_) in unblock()
64 blocked_ = (pthread_sigmask(SIG_SETMASK, &old_mask_, 0) != 0); in unblock()
69 bool blocked_; member in asio::detail::posix_signal_blocker
/external/webrtc/webrtc/base/
Dtask.cc22 blocked_(false), in Task()
41 ASSERT(state_ == STATE_INIT || blocked_); in ~Task()
75 ASSERT(blocked_); in Step()
77 blocked_ = true; in Step()
86 blocked_ = true; in Step()
108 blocked_ = true; in Step()
112 blocked_ = false; in Step()
132 blocked_ = true; in Step()
147 blocked_ = true; in Abort()
169 if (blocked_) { in Wake()
[all …]
Dtask.h104 bool Blocked() const { return blocked_; } in Blocked()
158 bool blocked_; variable
/external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
DNonBlockingThreadPool.h28 blocked_(0), in env_()
129 std::atomic<unsigned> blocked_; variable
210 blocked_++; in WaitForWork()
211 if (done_ && blocked_ == threads_.size()) { in WaitForWork()
225 blocked_--; in WaitForWork()
233 blocked_--; in WaitForWork()
/external/libchrome/mojo/core/ports/
Dports_unittest.cc107 (incoming_events_.empty() || (block_on_event_ && blocked_)); in IsIdle()
256 blocked_ = true; in ProcessEvents()
260 blocked_ = false; in ProcessEvents()
292 bool blocked_ = false; member in mojo::core::ports::test::__anon08d48a8c0111::TestNode