Home
last modified time | relevance | path

Searched defs:basic_pipebuf (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/boost/process/
Dpipe.hpp100 struct basic_pipebuf : std::basic_streambuf<CharT, Traits> struct
102 typedef basic_pipe<CharT, Traits> pipe_type;
104 typedef CharT char_type ;
105 typedef Traits traits_type;
106 typedef typename Traits::int_type int_type ;
107 typedef typename Traits::pos_type pos_type ;
108 typedef typename Traits::off_type off_type ;
110 constexpr static int default_buffer_size = BOOST_PROCESS_PIPE_SIZE;
113 basic_pipebuf() : _write(default_buffer_size), _read(default_buffer_size) in basic_pipebuf() argument
124 ~basic_pipebuf() in ~basic_pipebuf()
[all …]