/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/ |
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;
|
/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/bits/ |
fstream.tcc | 79 basic_filebuf() : __streambuf_type(), _M_lock(), _M_file(&_M_lock), 99 _M_file.open(__s, __mode); 159 _M_file.close(); 166 if (!_M_file.close()) 196 __ret += _M_file.showmanyc() / _M_codecvt->max_length(); 235 __ilen = _M_file.xsgetn(reinterpret_cast<char*>(this->eback()), 294 streamsize __elen = _M_file.xsgetn(_M_ext_end, __rlen); 493 __elen = _M_file.xsputn(reinterpret_cast<char*>(__ibuf), __ilen); 521 __elen = _M_file.xsputn(__buf, __blen); 535 __elen = _M_file.xsputn(__buf, __rlen) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/ |
fstream.tcc | 79 basic_filebuf() : __streambuf_type(), _M_lock(), _M_file(&_M_lock), 99 _M_file.open(__s, __mode); 159 _M_file.close(); 166 if (!_M_file.close()) 196 __ret += _M_file.showmanyc() / _M_codecvt->max_length(); 235 __ilen = _M_file.xsgetn(reinterpret_cast<char*>(this->eback()), 294 streamsize __elen = _M_file.xsgetn(_M_ext_end, __rlen); 493 __elen = _M_file.xsputn(reinterpret_cast<char*>(__ibuf), __ilen); 521 __elen = _M_file.xsputn(__buf, __blen); 535 __elen = _M_file.xsputn(__buf, __rlen) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/ |
fstream.tcc | 79 basic_filebuf() : __streambuf_type(), _M_lock(), _M_file(&_M_lock), 99 _M_file.open(__s, __mode); 159 _M_file.close(); 166 if (!_M_file.close()) 196 __ret += _M_file.showmanyc() / _M_codecvt->max_length(); 235 __ilen = _M_file.xsgetn(reinterpret_cast<char*>(this->eback()), 294 streamsize __elen = _M_file.xsgetn(_M_ext_end, __rlen); 493 __elen = _M_file.xsputn(reinterpret_cast<char*>(__ibuf), __ilen); 521 __elen = _M_file.xsputn(__buf, __blen); 535 __elen = _M_file.xsputn(__buf, __rlen) [all...] |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/ |
fstream.tcc | 79 basic_filebuf() : __streambuf_type(), _M_lock(), _M_file(&_M_lock), 99 _M_file.open(__s, __mode); 159 _M_file.close(); 166 if (!_M_file.close()) 196 __ret += _M_file.showmanyc() / _M_codecvt->max_length(); 235 __ilen = _M_file.xsgetn(reinterpret_cast<char*>(this->eback()), 294 streamsize __elen = _M_file.xsgetn(_M_ext_end, __rlen); 494 __elen = _M_file.xsputn(reinterpret_cast<char*>(__ibuf), __ilen); 522 __elen = _M_file.xsputn(__buf, __blen); 536 __elen = _M_file.xsputn(__buf, __rlen) [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...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ |
fstream | 96 __file_type _M_file; 228 { return _M_file.is_open(); }
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ |
fstream | 96 __file_type _M_file; 228 { return _M_file.is_open(); }
|