Lines Matching refs:mIn
238 : mBackingFile(android::base::Basename(std::string(backingFile))), mIn(backingFile) {} in Dump()
241 if (!mIn) { in run()
279 if (metadataOffset >= mIn.tellg()) { in run()
280 if (metadataOffset > mIn.tellg()) { in run()
281 out() << "gap of " << metadataOffset - mIn.tellg() in run()
290 out() << "finished" << (mIn ? "" : " with read errors"); in run()
334 mIn.seekg(offset); in dumpBlockmap()
336 auto ostream = out() << i << " @ " << hex(mIn.tellg()) << ": [ "; in dumpBlockmap()
476 mIn.read((char*)&res, sizeof(res)); in read()
482 mIn.seekg(pos); in readAt()
486 void skip(int64_t count) { mIn.seekg(count, std::ios_base::cur); } in skip()
488 void updateMaxPos() { mMaxDumpedPos = std::max<int64_t>(mMaxDumpedPos, mIn.tellg()); } in updateMaxPos()
491 std::ifstream mIn; member in __anon0107e9d80111::Dump