34 #ifndef _GLIBXX_STREAMBUF
35 #define _GLIBXX_STREAMBUF 1
37 #pragma GCC system_header
46 namespace std _GLIBCXX_VISIBILITY(default)
48 _GLIBCXX_BEGIN_NAMESPACE_VERSION
50 template<
typename _CharT,
typename _Traits>
52 __copy_streambufs_eof(basic_streambuf<_CharT, _Traits>*,
53 basic_streambuf<_CharT, _Traits>*,
bool&);
116 template<
typename _CharT,
typename _Traits>
117 class basic_streambuf
147 template<
bool _IsMove,
typename _CharT2>
148 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value,
153 template<
typename _CharT2>
154 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value,
159 template<
typename _CharT2,
typename _Traits2>
163 template<
typename _CharT2,
typename _Traits2,
typename _Alloc>
168 template<
typename _CharT2,
typename _Traits2,
typename _Alloc>
237 {
return this->
setbuf(__s, __n); }
242 {
return this->
seekoff(__off, __way, __mode); }
247 {
return this->
seekpos(__sp, __mode); }
266 return __ret ? __ret : this->
showmanyc();
279 int_type __ret = traits_type::eof();
280 if (__builtin_expect(!traits_type::eq_int_type(this->
sbumpc(),
282 __ret = this->
sgetc();
298 if (__builtin_expect(this->
gptr() < this->
egptr(),
true))
300 __ret = traits_type::to_int_type(*this->
gptr());
304 __ret = this->
uflow();
320 if (__builtin_expect(this->
gptr() < this->
egptr(),
true))
321 __ret = traits_type::to_int_type(*this->
gptr());
337 {
return this->
xsgetn(__s, __n); }
354 const bool __testpos = this->
eback() < this->
gptr();
355 if (__builtin_expect(!__testpos ||
356 !traits_type::eq(__c, this->
gptr()[-1]),
false))
357 __ret = this->
pbackfail(traits_type::to_int_type(__c));
361 __ret = traits_type::to_int_type(*this->
gptr());
379 if (__builtin_expect(this->
eback() < this->
gptr(),
true))
382 __ret = traits_type::to_int_type(*this->
gptr());
406 if (__builtin_expect(this->
pptr() < this->
epptr(),
true))
410 __ret = traits_type::to_int_type(__c);
413 __ret = this->
overflow(traits_type::to_int_type(__c));
430 {
return this->
xsputn(__s, __n); }
443 : _M_in_beg(0), _M_in_cur(0), _M_in_end(0),
444 _M_out_beg(0), _M_out_cur(0), _M_out_end(0),
464 gptr()
const {
return _M_in_cur; }
477 gbump(
int __n) { _M_in_cur += __n; }
508 pbase()
const {
return _M_out_beg; }
511 pptr()
const {
return _M_out_cur; }
514 epptr()
const {
return _M_out_end; }
524 pbump(
int __n) { _M_out_cur += __n; }
536 _M_out_beg = _M_out_cur = __pbeg;
667 {
return traits_type::eof(); }
681 int_type __ret = traits_type::eof();
682 const bool __testeof = traits_type::eq_int_type(this->
underflow(),
686 __ret = traits_type::to_int_type(*this->
gptr());
704 {
return traits_type::eof(); }
748 {
return traits_type::eof(); }
750 #if _GLIBCXX_USE_DEPRECATED
773 __safe_gbump(
streamsize __n) { _M_in_cur += __n; }
776 __safe_pbump(
streamsize __n) { _M_out_cur += __n; }
782 : _M_in_beg(__sb._M_in_beg), _M_in_cur(__sb._M_in_cur),
783 _M_in_end(__sb._M_in_end), _M_out_beg(__sb._M_out_beg),
784 _M_out_cur(__sb._M_out_cur), _M_out_end(__sb._M_out_cur),
795 __copy_streambufs_eof(basic_streambuf<char>* __sbin,
796 basic_streambuf<char>* __sbout,
bool& __ineof);
797 #ifdef _GLIBCXX_USE_WCHAR_T
800 __copy_streambufs_eof(basic_streambuf<wchar_t>* __sbin,
801 basic_streambuf<wchar_t>* __sbout,
bool& __ineof);
804 _GLIBCXX_END_NAMESPACE_VERSION