Home
last modified time | relevance | path

Searched refs:streambuf (Results 1 – 25 of 94) sorted by relevance

1234

/third_party/boost/libs/asio/doc/overview/
Dline_based.qbk45 boost::asio::streambuf data_;
48 The `streambuf` data member serves as a place to store the data that has been
51 surplus data should be left in the `streambuf` so that it may be inspected by a
57 condition. For example, to read data into a streambuf until whitespace is
61 boost::asio::streambuf::const_buffers_type> iterator;
73 boost::asio::streambuf b;
76 To read data into a streambuf until a matching character is found:
103 boost::asio::streambuf b;
115 [link boost_asio.reference.streambuf streambuf],
Dbuffers.qbk64 character array objects are internal to the streambuf object, but direct access
68 * The input sequence of the streambuf is accessible via the [link
72 * The output sequence of the streambuf is accessible via the [link
83 The streambuf constructor accepts a `size_t` argument specifying the maximum of
99 boost::asio::streambuf sb;
102 boost::asio::streambuf::const_buffers_type bufs = sb.data();
157 [link boost_asio.reference.streambuf streambuf],
/third_party/boost/libs/process/test/
Dbind_stdout_stderr.cpp74 boost::asio::streambuf &buffer_;
76 read_handler(boost::asio::streambuf &buffer) : buffer_(buffer) {} in read_handler()
106 boost::asio::streambuf buffer1;
110 boost::asio::streambuf buffer2;
Dspawn.cpp73 boost::asio::streambuf &buffer_;
75 read_handler(boost::asio::streambuf &buffer) : buffer_(buffer) {} in read_handler()
102 boost::asio::streambuf buffer;
Dbind_stdout.cpp75 boost::asio::streambuf &buffer_;
77 read_handler(boost::asio::streambuf &buffer) : buffer_(buffer) {} in read_handler()
105 boost::asio::streambuf buffer;
Dbind_stderr.cpp67 boost::asio::streambuf &buffer_;
69 read_handler(boost::asio::streambuf &buffer) : buffer_(buffer) {} in read_handler()
98 boost::asio::streambuf buffer;
/third_party/boost/boost/format/detail/
Dworkarounds_gcc-2_95.hpp63 class basic_streambuf<char, Tr> : public streambuf {
72 basic_ios(streambuf * p) : ostream(p) {}; in basic_ios()
97 basic_ostream(streambuf * p) : basic_ios<char,Tr> (p) {} in basic_ostream()
/third_party/boost/boost/process/
Dio.hpp126 template<typename T> using is_streambuf = typename std::is_same<T, boost::asio::streambuf>::type;
239 …api::async_out_buffer<p1, p2, asio::streambuf> operator=(asio::streambuf & os) … in operator =()
243 …api::async_out_buffer<p1, p2, asio::streambuf> operator>(asio::streambuf & os) … in operator >()
/third_party/boost/doc/html/boost_asio/example/cpp03/http/client/
Dsync_client.cpp44 boost::asio::streambuf request; in main()
57 boost::asio::streambuf response; in main()
Dasync_client.cpp178 boost::asio::streambuf request_;
179 boost::asio::streambuf response_;
/third_party/boost/libs/asio/example/cpp03/http/client/
Dsync_client.cpp44 boost::asio::streambuf request; in main()
57 boost::asio::streambuf response; in main()
Dasync_client.cpp178 boost::asio::streambuf request_;
179 boost::asio::streambuf response_;
/third_party/boost/libs/utility/doc/
Dbase_from_member.qbk26 #include <streambuf> /* for std::streambuf */
30 : public std::streambuf
57 #include <streambuf> /* for std::streambuf */
61 : public std::streambuf
207 #include <streambuf> // for std::streambuf
211 : public std::streambuf
/third_party/boost/libs/beast/test/bench/buffers/
Dbench_buffers.cpp228 [&](){ return do_prepares<net::streambuf>(repeat, count, size); } in run()
229 ,[&](){ return do_hints <net::streambuf>(repeat, count, size); } in run()
230 ,[&](){ return do_random <net::streambuf>(repeat, count, size); } in run()
/third_party/grpc/test/cpp/util/
Dgrpc_tool_test.cc530 std::streambuf* orig = std::cin.rdbuf(); in TEST_F()
590 std::streambuf* orig = std::cin.rdbuf(); in TEST_F()
653 std::streambuf* orig = std::cin.rdbuf(); in TEST_F()
708 std::streambuf* orig = std::cin.rdbuf(); in TEST_F()
769 std::streambuf* orig = std::cin.rdbuf(); in TEST_F()
794 std::streambuf* orig = std::cin.rdbuf(); in TEST_F()
822 std::streambuf* orig = std::cin.rdbuf(); in TEST_F()
847 std::streambuf* orig = std::cin.rdbuf(); in TEST_F()
916 std::streambuf* orig = std::cin.rdbuf(); in TEST_F()
942 std::streambuf* orig = std::cin.rdbuf(); in TEST_F()
/third_party/boost/libs/serialization/example/
Ddemo_fast_archive.cpp89 fast_binary_oarchive(std::streambuf & bsb, unsigned int flags = 0) : in fast_binary_oarchive()
155 fast_binary_iarchive(std::streambuf & bsb, unsigned int flags = 0) : in fast_binary_iarchive()
/third_party/boost/boost/iostreams/detail/
Dresolve.hpp124 mode_adapter<Mode, std::streambuf>
125 resolve(std::streambuf& sb) in resolve()
126 { return mode_adapter<Mode, std::streambuf>(wrap(sb)); } in resolve()
/third_party/boost/doc/html/boost_asio/example/cpp03/icmp/
Dping.cpp51 boost::asio::streambuf request_buffer; in start_send()
138 boost::asio::streambuf reply_buffer_;
/third_party/boost/libs/asio/example/cpp03/icmp/
Dping.cpp51 boost::asio::streambuf request_buffer; in start_send()
138 boost::asio::streambuf reply_buffer_;
/third_party/boost/boost/asio/
Dstreambuf.hpp28 typedef basic_streambuf<> streambuf; typedef
/third_party/boost/libs/asio/include/boost/asio/
Dstreambuf.hpp28 typedef basic_streambuf<> streambuf; typedef
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/contrib/iostream3/
Dzfstream.h27 class gzfilebuf : public std::streambuf
135 virtual std::streambuf*
/third_party/zlib/contrib/iostream3/
Dzfstream.h27 class gzfilebuf : public std::streambuf
135 virtual std::streambuf*
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/contrib/iostream3/
Dzfstream.h27 class gzfilebuf : public std::streambuf
135 virtual std::streambuf*
/third_party/boost/libs/process/example/
Dasync_io.cpp20 boost::asio::streambuf buffer; in main()

1234