HomeSort by relevance Sort by last modified time
    Searched refs:_M_file (Results 1 - 25 of 25) sorted by null

  /ndk/sources/cxx-stl/stlport/src/
stdio_streambuf.cpp 57 _M_file(file)
61 _STLP_VENDOR_CSTD::fflush(_M_file);
70 _STLP_VENDOR_CSTD::setvbuf(_M_file, s, (s == 0 && n == 0) ? _IONBF : _IOFBF, __n_size_t);
93 if (off <= numeric_limits<off_type>::max() && FSEEK(_M_file, off, whence) == 0) {
95 FGETPOS(_M_file, &pos);
141 return FSETPOS(_M_file, &p) == 0 ? pos : pos_type(-1);
145 return _STLP_VENDOR_CSTD::fflush(_M_file) == 0 ? 0 : -1;
159 int c = fgetc(_M_file);
161 int c = getc(_M_file);
164 _STLP_VENDOR_CSTD::ungetc(c, _M_file);
    [all...]
stdio_streambuf.h 70 FILE* _M_file;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
stdio_sync_filebuf.h 68 std::__c_file* const _M_file;
77 : _M_file(__f), _M_unget_buf(traits_type::eof())
88 file() { return this->_M_file; }
146 if (std::fflush(_M_file))
161 { return std::fflush(_M_file); }
176 if (!fseeko64(_M_file, __off, __whence))
177 __ret = std::streampos(ftello64(_M_file));
179 if (!fseek(_M_file, __off, __whence))
180 __ret = std::streampos(std::ftell(_M_file));
195 { return std::getc(_M_file); }
    [all...]
stdio_filebuf.h 109 fd() { return this->_M_file.fd(); }
119 file() { return this->_M_file.file(); }
130 this->_M_file.sys_open(__fd, __mode);
147 this->_M_file.sys_open(__f, __mode);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
stdio_sync_filebuf.h 68 std::__c_file* const _M_file;
77 : _M_file(__f), _M_unget_buf(traits_type::eof())
88 file() { return this->_M_file; }
146 if (std::fflush(_M_file))
161 { return std::fflush(_M_file); }
176 if (!fseeko64(_M_file, __off, __whence))
177 __ret = std::streampos(ftello64(_M_file));
179 if (!fseek(_M_file, __off, __whence))
180 __ret = std::streampos(std::ftell(_M_file));
195 { return std::getc(_M_file); }
    [all...]
stdio_filebuf.h 109 fd() { return this->_M_file.fd(); }
119 file() { return this->_M_file.file(); }
130 this->_M_file.sys_open(__fd, __mode);
147 this->_M_file.sys_open(__f, __mode);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
stdio_sync_filebuf.h 68 std::__c_file* const _M_file;
77 : _M_file(__f), _M_unget_buf(traits_type::eof())
88 file() { return this->_M_file; }
146 if (std::fflush(_M_file))
161 { return std::fflush(_M_file); }
176 if (!fseeko64(_M_file, __off, __whence))
177 __ret = std::streampos(ftello64(_M_file));
179 if (!fseek(_M_file, __off, __whence))
180 __ret = std::streampos(std::ftell(_M_file));
195 { return std::getc(_M_file); }
    [all...]
stdio_filebuf.h 109 fd() { return this->_M_file.fd(); }
119 file() { return this->_M_file.file(); }
130 this->_M_file.sys_open(__fd, __mode);
147 this->_M_file.sys_open(__f, __mode);
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
stdio_sync_filebuf.h 68 std::__c_file* const _M_file;
77 : _M_file(__f), _M_unget_buf(traits_type::eof())
88 file() { return this->_M_file; }
146 if (std::fflush(_M_file))
161 { return std::fflush(_M_file); }
176 if (!fseeko64(_M_file, __off, __whence))
177 __ret = std::streampos(ftello64(_M_file));
179 if (!fseek(_M_file, __off, __whence))
180 __ret = std::streampos(std::ftell(_M_file));
195 { return std::getc(_M_file); }
    [all...]
stdio_filebuf.h 109 fd() { return this->_M_file.fd(); }
119 file() { return this->_M_file.file(); }
130 this->_M_file.sys_open(__fd, __mode);
147 this->_M_file.sys_open(__f, __mode);
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_stdio.cpp 232 _M_file = FOPEN(name, flags);
234 if (_M_file) {
235 file_no = fileno(_M_file);
241 setbuf(_M_file, 0);
246 if (FSEEK(_M_file, 0, SEEK_END) != 0)
308 bool ok = _M_should_close ? (fclose(_M_file) == 0) : true;
318 return fread(buf, 1, n, _M_file);
326 ptrdiff_t written = fwrite(buf, 1, n, _M_file);
364 if ( FSEEK(_M_file, offset, whence) == 0 ) {
365 return FTELL(_M_file);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/debug/
formatter.h 425 : _M_file(__file), _M_line(__line), _M_num_parameters(0), _M_text(0),
444 const char* _M_file;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/debug/
formatter.h 425 : _M_file(__file), _M_line(__line), _M_num_parameters(0), _M_text(0),
444 const char* _M_file;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/debug/
formatter.h 425 : _M_file(__file), _M_line(__line), _M_num_parameters(0), _M_text(0),
444 const char* _M_file;
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/debug/
formatter.h 427 : _M_file(__file), _M_line(__line), _M_num_parameters(0), _M_text(0),
446 const char* _M_file;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/
random.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
random.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
random.h     [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
random.h     [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_fstream.h 116 FILE* _M_file;
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_fstream.h 116 FILE* _M_file;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
random.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
random.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
random.h     [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
random.h     [all...]

Completed in 584 milliseconds