Searched refs:rdbuf (Results 1 - 15 of 15) sorted by relevance

/freebsd-10-stable/contrib/libstdc++/src/
H A Dios_init.cc185 cout.rdbuf(&buf_cout);
186 cin.rdbuf(&buf_cin);
187 cerr.rdbuf(&buf_cerr);
188 clog.rdbuf(&buf_cerr);
194 wcout.rdbuf(&buf_wcout);
195 wcin.rdbuf(&buf_wcin);
196 wcerr.rdbuf(&buf_wcerr);
197 wclog.rdbuf(&buf_wcerr);
H A Distream.cc52 __streambuf_type* __sb = this->rdbuf();
125 __streambuf_type* __sb = this->rdbuf();
212 __streambuf_type* __sb = __in.rdbuf();
288 __streambuf_type* __sb = __in.rdbuf();
362 __streambuf_type* __sb = __in.rdbuf();
432 __streambuf_type* __sb = this->rdbuf();
505 __streambuf_type* __sb = this->rdbuf();
591 __streambuf_type* __sb = __in.rdbuf();
H A Dstrstream.cc358 istrstream::rdbuf() const function in class:istrstream
377 ostrstream::rdbuf() const function in class:ostrstream
404 strstream::rdbuf() const function in class:strstream
H A Dcompatibility.cc74 __streambuf_type* __sb = this->rdbuf();
140 __streambuf_type* __sb = this->rdbuf();
/freebsd-10-stable/usr.bin/csup/
H A Dstream.c101 struct buf *rdbuf; member in struct:stream
151 struct buf *rdbuf; member in struct:zfilter
311 stream->rdbuf = buf_new(STREAM_BUFSIZ);
313 stream->rdbuf = NULL;
524 struct buf *rdbuf; local
528 rdbuf = stream->rdbuf;
529 if (buf_count(rdbuf) == 0) {
534 n = min(size, buf_count(rdbuf));
535 memcpy(buf, rdbuf
544 struct buf *rdbuf; local
[all...]
/freebsd-10-stable/contrib/libc++/src/
H A Diostream.cpp41 ::new(clog) ostream(cerr_ptr->rdbuf());
49 ::new(wclog) wostream(wcerr_ptr->rdbuf());
/freebsd-10-stable/contrib/libstdc++/include/bits/
H A Dostream_insert.h52 const streamsize __put = __out.rdbuf()->sputn(__s, __n);
67 const typename _Traits::int_type __put = __out.rdbuf()->sputc(__c);
H A Dbasic_ios.h265 * destroy the streambuf held by rdbuf().
307 rdbuf() const function in class:basic_ios
320 * in derived classes by overrides of the zero-argument @c rdbuf(),
329 * foo.ios::rdbuf(p); // ios == basic_ios<char>
333 rdbuf(basic_streambuf<_CharT, _Traits>* __sb);
340 * All fields of __rhs are copied into this object except that rdbuf()
H A Dstreambuf_iterator.h100 : _M_sbuf(__s.rdbuf()), _M_c(traits_type::eof()) { }
233 : _M_sbuf(__s.rdbuf()), _M_failed(!_M_sbuf) { }
/freebsd-10-stable/contrib/libstdc++/include/std/
H A Dstd_ostream.h293 const streamsize __put = this->rdbuf()->sputn(__s, __n);
322 * If @c rdbuf() is a null pointer, changes nothing.
324 * Otherwise, calls @c rdbuf()->pubsync(), and if that returns -1,
336 * failure. Otherwise returns @c rdbuf()->pubseekoff(0,cur,out).
346 * If @c fail() is not true, calls @c rdbuf()->pubseekpos(pos). If
358 * If @c fail() is not true, calls @c rdbuf()->pubseekoff(off,dir).
418 if (_M_os.rdbuf() && _M_os.rdbuf()->pubsync() == -1)
H A Dstd_fstream.h485 * This hides both signatures of std::basic_ios::rdbuf().
488 rdbuf() const function in class:basic_ifstream
493 * @return @c rdbuf()->is_open()
615 * This hides both signatures of std::basic_ios::rdbuf().
618 rdbuf() const function in class:basic_ofstream
623 * @return @c rdbuf()->is_open()
745 * This hides both signatures of std::basic_ios::rdbuf().
748 rdbuf() const function in class:basic_fstream
753 * @return @c rdbuf()->is_open()
H A Dstd_sstream.h340 * This hides both signatures of std::basic_ios::rdbuf().
343 rdbuf() const function in class:basic_istringstream
348 * @return @c rdbuf()->str()
358 * Calls @c rdbuf()->str(s).
453 * This hides both signatures of std::basic_ios::rdbuf().
456 rdbuf() const function in class:basic_ostringstream
461 * @return @c rdbuf()->str()
471 * Calls @c rdbuf()->str(s).
562 * This hides both signatures of std::basic_ios::rdbuf().
565 rdbuf() cons function in class:basic_stringstream
[all...]
H A Dstd_bitset.h1242 basic_streambuf<_CharT, _Traits>* __buf = __is.rdbuf();
/freebsd-10-stable/sys/dev/bktr/
H A Dbktr_tuner.c1114 u_char rdbuf[22]; local
1124 rdbuf[i] = x;
1131 rdbuf[0x11], rdbuf[0x12], rdbuf[0x13], rdbuf[0x14]);
1132 if (rdbuf[0x13] != 4) {
/freebsd-10-stable/sys/boot/i386/zfsboot/
H A Dzfsboot.c114 char rdbuf[READ_BUF_SIZE]; /* for reading large things */ member in struct:dmadat
200 if (drvread(dsk, dmadat->rdbuf, lba, nb))
202 memcpy(p, dmadat->rdbuf, nb * DEV_BSIZE);
229 memcpy(dmadat->rdbuf, p, nb * DEV_BSIZE);
230 if (drvwrite(dsk, dmadat->rdbuf, lba, nb))

Completed in 113 milliseconds