Lines Matching refs:offset
56 uint64_t offset = 0; in Run() local
59 s = DumpBlobLogHeader(&offset, &compression); in Run()
72 while (offset < footer_offset) { in Run()
74 compression, &offset, &total_records, &total_key_size, in Run()
94 Status BlobDumpTool::Read(uint64_t offset, size_t size, Slice* result) { in Read() argument
104 Status s = reader_->Read(offset, size, result, buffer_.get(), nullptr); in Read()
114 Status BlobDumpTool::DumpBlobLogHeader(uint64_t* offset, in DumpBlobLogHeader() argument
139 *offset = BlobLogHeader::kSize; in DumpBlobLogHeader()
175 uint64_t* offset, uint64_t* total_records, in DumpRecord() argument
181 *offset, *offset); in DumpRecord()
184 Status s = Read(*offset, BlobLogRecord::kHeaderSize, &slice); in DumpRecord()
200 *offset += BlobLogRecord::kHeaderSize; in DumpRecord()
201 s = Read(*offset, static_cast<size_t>(key_size + value_size), &slice); in DumpRecord()
234 *offset += key_size + value_size; in DumpRecord()