Searched refs:_file (Results 1 – 4 of 4) sorted by relevance
/frameworks/compile/libbcc/bcinfo/Wrap/ |
D | file_wrapper_input.cpp | 24 _file = fopen(name, "rb"); in FileWrapperInput() 25 if (NULL == _file) { in FileWrapperInput() 32 fclose(_file); in ~FileWrapperInput() 36 size_t found = fread((char*) buffer, 1, wanted, _file); in Read() 37 if (feof(_file) || ferror(_file)) { in Read() 63 return 0 == fseek(_file, (long) pos, SEEK_SET); in Seek()
|
D | file_wrapper_output.cpp | 23 _file = fopen(name, "wb"); in FileWrapperOutput() 24 if (NULL == _file) { in FileWrapperOutput() 31 fclose(_file); in ~FileWrapperOutput() 35 return EOF != fputc(byte, _file); in Write() 44 return buffer_size == fwrite(buffer, 1, buffer_size, _file); in Write()
|
/frameworks/compile/libbcc/include/bcinfo/Wrap/ |
D | file_wrapper_output.h | 41 FILE* _file; variable
|
D | file_wrapper_input.h | 53 FILE* _file; variable
|