Home
last modified time | relevance | path

Searched refs:mInfoFile (Results 1 – 4 of 4) sorted by relevance

/frameworks/compile/libbcc/lib/ExecutionEngine/
DMCCacheReader.cpp77 mInfoFile = infoFile; in checkCacheFile()
104 if (fstat(mInfoFile->getFD(), &stfile) < 0) { in checkFileSize()
121 if (mInfoFile->seek(0, SEEK_SET) != 0) { in readHeader()
132 if (mInfoFile->read(reinterpret_cast<char *>(mpHeader), sizeof(MCO_Header)) != in readHeader()
229 if (mInfoFile->seek(mpHeader->NAME##_offset, SEEK_SET) == -1) { \
234 if (mInfoFile->read(reinterpret_cast<char *>(NAME##_raw), \
DMCCacheReader.h39 FileHandle *mObjFile, *mInfoFile;
63 : mObjFile(NULL), mInfoFile(NULL), mInfoFileSize(0), mpHeader(NULL), in MCCacheReader()
DMCCacheWriter.cpp57 mInfoFile = infoFile; in writeCacheFile()
346 if (mInfoFile->seek(OFFSET, SEEK_SET) == -1) { \ in writeAll()
351 if (mInfoFile->write(reinterpret_cast<char *>(SECTION), (SIZE)) != \ in writeAll()
DMCCacheWriter.h36 FileHandle *mObjFile, *mInfoFile; variable