Searched refs:_file (Results 1 - 4 of 4) sorted by relevance

/frameworks/compile/libbcc/bcinfo/Wrap/
H A Dfile_wrapper_output.cpp23 _file = fopen(name, "wb");
24 if (NULL == _file) {
31 fclose(_file);
35 return EOF != fputc(byte, _file);
44 return buffer_size == fwrite(buffer, 1, buffer_size, _file);
H A Dfile_wrapper_input.cpp24 _file = fopen(name, "rb");
25 if (NULL == _file) {
32 fclose(_file);
36 size_t found = fread((char*) buffer, 1, wanted, _file);
37 if (feof(_file) || ferror(_file)) {
63 return 0 == fseek(_file, (long) pos, SEEK_SET);
/frameworks/compile/libbcc/include/bcinfo/Wrap/
H A Dfile_wrapper_output.h41 FILE* _file; member in class:FileWrapperOutput
H A Dfile_wrapper_input.h53 FILE* _file; member in class:FileWrapperInput

Completed in 363 milliseconds