Lines Matching refs:mIn
201 : mBackingFile(android::base::Basename(std::string(backingFile))), mIn(backingFile) {} in Dump()
204 if (!mIn) { in run()
235 if (mIn.tellg() != metadataOffset) { in run()
236 out() << "gap of " << metadataOffset - mIn.tellg() in run()
243 out() << "finished" << (mIn ? "" : " with read errors"); in run()
285 mIn.seekg(offset); in dumpBlockmap()
287 auto ostream = out() << i << " @ " << hex(mIn.tellg()) << ": [ "; in dumpBlockmap()
418 mIn.read((char*)&res, sizeof(res)); in read()
424 mIn.seekg(pos); in readAt()
428 void skip(int64_t count) { mIn.seekg(count, std::ios_base::cur); } in skip()
430 void updateMaxPos() { mMaxDumpedPos = std::max<int64_t>(mMaxDumpedPos, mIn.tellg()); } in updateMaxPos()
433 std::ifstream mIn; member in __anon0107e9d80111::Dump