Home
last modified time | relevance | path

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

/third_party/boost/boost/iostreams/
Dchain.hpp454 chain_client(chain_type* chn = 0) : chain_(chn ) { } in chain_client()
455 chain_client(chain_client* client) : chain_(client->chain_) { } in chain_client()
459 { return chain_->component_type(n); } in component_type()
464 { return chain_->BOOST_NESTED_TEMPLATE component_type<N>(); } in component_type()
468 { return chain_->BOOST_NESTED_TEMPLATE component<T>(n); } in component()
473 { return chain_->BOOST_NESTED_TEMPLATE component<N, T>(); } in component()
475 bool is_complete() const { return chain_->is_complete(); } in is_complete()
476 bool auto_close() const { return chain_->auto_close(); } in auto_close()
477 void set_auto_close(bool close) { chain_->set_auto_close(close); } in set_auto_close()
478 bool strict_sync() { return chain_->strict_sync(); } in strict_sync()
[all …]
Dfiltering_stream.hpp96 filtering_stream_base() : stream_type(0) { this->set_chain(&chain_); } in filtering_stream_base()
98 void notify() { this->rdbuf(chain_.empty() ? 0 : &chain_.front()); } in notify()
99 Chain chain_; member in boost::iostreams::detail::filtering_stream_base
/third_party/boost/boost/iostreams/detail/streambuf/
Dchainbuf.hpp53 chainbuf() { client_type::set_chain(&chain_); } in chainbuf()
88 { return static_cast<delegate_type&>(chain_.front()); } in delegate()
108 Chain chain_; member in boost::iostreams::detail::chainbuf