Home | History | Annotate | Download | only in src

Lines Matching refs:_M_file

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);
173 int c = fgetc(_M_file);
175 int c = getc(_M_file);
182 int result = _STLP_VENDOR_CSTD::ungetc(c, _M_file);
209 _STLP_VENDOR_CSTD::fflush(_M_file);
225 int result = fputc(c, _M_file);
227 int result = putc(c, _M_file);