Searched defs:_M_open (Results 1 - 4 of 4) sorted by relevance

/external/stlport/src/details/
H A Dfstream_stdio.cpp172 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode, function in class:_Filebuf_base
261 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode) function in class:_Filebuf_base
266 return this->_M_open(name, openmode, S_IRUSR | S_IWUSR | S_IRGRP |
273 bool _Filebuf_base::_M_open( int file_no, ios_base::openmode ) function in class:_Filebuf_base
H A Dfstream_unistd.cpp155 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode, function in class:_Filebuf_base
215 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode) function in class:_Filebuf_base
220 return this->_M_open(name, openmode, S_IRUSR | S_IWUSR | S_IRGRP |
227 bool _Filebuf_base::_M_open(int file_no, ios_base::openmode) function in class:_Filebuf_base
H A Dfstream_win32io.cpp218 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode, function in class:_Filebuf_base
294 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode) { function in class:_Filebuf_base
298 return this->_M_open(name, openmode, FILE_ATTRIBUTE_NORMAL);
301 bool _Filebuf_base::_M_open(_STLP_fd __id, ios_base::openmode init_mode) { function in class:_Filebuf_base
332 bool _Filebuf_base::_M_open(int file_no, ios_base::openmode init_mode) { function in class:_Filebuf_base
/external/stlport/stlport/stl/
H A D_fstream.h59 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;
176 return _M_base._M_open(__s, __m, __protection) ? this : 0;
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) { function in class:basic_filebuf
194 return _M_base._M_open(__i
[all...]

Completed in 101 milliseconds