Searched refs:_M_open (Results 1 – 5 of 5) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _fstream.h | 59 bool _M_open(const char*, ios_base::openmode, long __protection); 60 bool _M_open(const char*, ios_base::openmode); 61 bool _M_open(int __id, ios_base::openmode = ios_base::__default_mode); 63 bool _M_open(_STLP_fd __id, ios_base::openmode = ios_base::__default_mode); 169 return _M_base._M_open(__s, __m) ? this : 0; in open() 176 return _M_base._M_open(__s, __m, __protection) ? this : 0; in open() 182 return this->_M_open(__id, _Init_mode); 187 return _M_base._M_open(__id, _Init_mode) ? this : 0; 193 _Self* _M_open(int __id, ios_base::openmode _Init_mode = ios_base::__default_mode) { 194 return _M_base._M_open(__id, _Init_mode) ? this : 0;
|
/ndk/sources/cxx-stl/stlport/src/details/ |
D | fstream_stdio.cpp | 172 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode, in _M_open() function in _Filebuf_base 261 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode) in _M_open() function in _Filebuf_base 266 return this->_M_open(name, openmode, S_IRUSR | S_IWUSR | S_IRGRP | in _M_open() 273 bool _Filebuf_base::_M_open( int file_no, ios_base::openmode ) in _M_open() function in _Filebuf_base
|
D | fstream_unistd.cpp | 155 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode, in _M_open() function in _Filebuf_base 215 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode) in _M_open() function in _Filebuf_base 220 return this->_M_open(name, openmode, S_IRUSR | S_IWUSR | S_IRGRP | in _M_open() 227 bool _Filebuf_base::_M_open(int file_no, ios_base::openmode) in _M_open() function in _Filebuf_base
|
D | fstream_win32io.cpp | 218 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode, in _M_open() function in _Filebuf_base 294 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode) { in _M_open() function in _Filebuf_base 298 return this->_M_open(name, openmode, FILE_ATTRIBUTE_NORMAL); in _M_open() 301 bool _Filebuf_base::_M_open(_STLP_fd __id, ios_base::openmode init_mode) { in _M_open() function in _Filebuf_base 332 bool _Filebuf_base::_M_open(int file_no, ios_base::openmode init_mode) { in _M_open() function in _Filebuf_base
|
/ndk/sources/cxx-stl/stlport/src/ |
D | iostream.cpp | 182 result->_M_open(_FILE_fd(f), mode); in _Stl_create_wfilebuf()
|