29 #ifndef _STDIO_FILEBUF_H 30 #define _STDIO_FILEBUF_H 1 32 #pragma GCC system_header 36 namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
38 _GLIBCXX_BEGIN_NAMESPACE_VERSION
49 template<
typename _CharT,
typename _Traits = std::
char_traits<_CharT> >
54 typedef _CharT char_type;
55 typedef _Traits traits_type;
56 typedef typename traits_type::int_type int_type;
57 typedef typename traits_type::pos_type pos_type;
58 typedef typename traits_type::off_type off_type;
59 typedef std::size_t size_t;
78 size_t __size = static_cast<size_t>(BUFSIZ));
90 stdio_filebuf(std::__c_file* __f, std::ios_base::openmode __mode,
91 size_t __size = static_cast<size_t>(BUFSIZ));
100 #if __cplusplus >= 201103L 118 fd() {
return this->_M_file.fd(); }
128 file() {
return this->_M_file.file(); }
131 template<
typename _CharT,
typename _Traits>
135 template<
typename _CharT,
typename _Traits>
139 this->_M_file.sys_open(__fd, __mode);
142 this->_M_mode = __mode;
143 this->_M_buf_size = __size;
144 this->_M_allocate_internal_buffer();
145 this->_M_reading =
false;
146 this->_M_writing =
false;
147 this->_M_set_buffer(-1);
151 template<
typename _CharT,
typename _Traits>
156 this->_M_file.sys_open(__f, __mode);
159 this->_M_mode = __mode;
160 this->_M_buf_size = __size;
161 this->_M_allocate_internal_buffer();
162 this->_M_reading =
false;
163 this->_M_writing =
false;
164 this->_M_set_buffer(-1);
168 _GLIBCXX_END_NAMESPACE_VERSION
GNU extensions for public use.
ISO C++ entities toplevel namespace is std.
The actual work of input and output (for files).
Provides a layer of compatibility for C/POSIX.This GNU extension provides extensions for working with...
basic_filebuf()
Does not open any files.