OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:_m_file
(Results
1 - 8
of
8
) sorted by null
/external/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/android/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
;
/external/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
...]
/ndk/sources/android/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
...]
/external/stlport/stlport/stl/
_fstream.h
116
FILE*
_M_file
;
/ndk/sources/android/stlport/stlport/stl/
_fstream.h
116
FILE*
_M_file
;
Completed in 1398 milliseconds