OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fstream_
(Results
1 - 2
of
2
) sorted by null
/sdk/emulator/qtools/
decoder.h
15
bool IsEOF() { return (end_ == next_) && feof(
fstream_
); }
24
FILE *
fstream_
;
member in class:Decoder
decoder.cpp
91
fstream_
= NULL;
104
if (
fstream_
) {
105
fclose(
fstream_
);
106
fstream_
= NULL;
117
fstream_
= fopen(filename_, "r");
118
if (
fstream_
== NULL) {
123
int rval = fread(buf_, 1, kBufSize,
fstream_
);
125
if (ferror(
fstream_
)) {
129
if (!feof(
fstream_
)) {
151
int rval = fread(buf_ + len, 1, nbytes,
fstream_
);
[
all
...]
Completed in 517 milliseconds