Home
last modified time | relevance | path

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

/third_party/protobuf/src/google/protobuf/io/
Dzero_copy_stream_impl.cc104 is_closed_(false), in CopyingFileInputStream()
117 GOOGLE_CHECK(!is_closed_); in Close()
119 is_closed_ = true; in Close()
132 GOOGLE_CHECK(!is_closed_); in Read()
148 GOOGLE_CHECK(!is_closed_); in Skip()
191 is_closed_(false), in CopyingFileOutputStream()
203 GOOGLE_CHECK(!is_closed_); in Close()
205 is_closed_ = true; in Close()
219 GOOGLE_CHECK(!is_closed_); in Write()
Dzero_copy_stream_impl.h116 bool is_closed_; variable
197 bool is_closed_; variable
/third_party/boost/boost/fiber/
Dbuffered_channel.hpp60 bool is_closed_() const noexcept { in is_closed_() function in boost::fibers::buffered_channel
84 return is_closed_(); in is_closed()
126 if ( BOOST_UNLIKELY( is_closed_() ) ) { in try_push()
159 if ( BOOST_UNLIKELY( is_closed_() ) ) { in try_push()
193 if ( BOOST_UNLIKELY( is_closed_() ) ) { in push()
232 if ( BOOST_UNLIKELY( is_closed_() ) ) { in push()
288 if ( BOOST_UNLIKELY( is_closed_() ) ) { in push_wait_until()
336 if ( BOOST_UNLIKELY( is_closed_() ) ) { in push_wait_until()
381 return is_closed_() in try_pop()
414 if ( BOOST_UNLIKELY( is_closed_() ) ) { in pop()
[all …]
/third_party/node/src/
Dstream_pipe.cc59 if (is_closed_) in Unpipe()
68 is_closed_ = true; in Unpipe()
169 if (pipe->is_closed_) { in OnStreamAfterWrite()
230 if (pipe->is_reading_ || pipe->is_closed_) in OnStreamWantsWrite()
263 pipe->is_closed_ = false; in Start()
276 args.GetReturnValue().Set(pipe->is_closed_); in IsClosed()
Dstream_pipe.h35 bool is_closed_ = true; variable