Home | History | Annotate | Download | only in details

Lines Matching full:openmode

78 static ios_base::openmode flag_to_openmode(int mode)
80 ios_base::openmode ret = ios_base::__default_mode;
155 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode,
166 switch ( openmode & (~ios_base::ate & ~ios_base::binary) ) {
200 if ((openmode & (ios_base::ate | ios_base::app)) && (LSEEK(file_no, 0, SEEK_END) == -1)) {
206 _M_openmode = openmode;
215 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode)
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)