Searched refs:mIn (Results 1 – 3 of 3) sorted by relevance
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()[all …]
443 size_t IN = mIn.dataAvail(); in getAndExecuteCommand()445 cmd = mIn.readInt32(); in getAndExecuteCommand()495 if (mIn.dataPosition() >= mIn.dataSize()) { in processPendingDerefs()604 } while (mIn.dataPosition() < mIn.dataSize()); in handlePolledCommands()781 mIn.setDataCapacity(256); in IPCThreadState()806 err = mIn.errorCheck(); in waitForResponse()808 if (mIn.dataAvail() == 0) continue; in waitForResponse()810 cmd = (uint32_t)mIn.readInt32(); in waitForResponse()833 const int32_t result = mIn.readInt32(); in waitForResponse()842 err = mIn.read(&tr, sizeof(tr)); in waitForResponse()[all …]
143 Parcel mIn; variable