Searched refs:ReadAtOffset (Results 1 – 9 of 9) sorted by relevance
/system/libziparchive/ |
D | zip_archive.cc | 165 if (!archive->mapped_zip.ReadAtOffset(reinterpret_cast<uint8_t*>((&zip64EocdLocator)), in FindCentralDirectoryInfoForZip64() 187 if (!archive->mapped_zip.ReadAtOffset(reinterpret_cast<uint8_t*>(&zip64EocdRecord), in FindCentralDirectoryInfoForZip64() 223 if (!archive->mapped_zip.ReadAtOffset(scan_buffer.data(), read_amount, search_start)) { in FindCentralDirectoryInfo() 581 if (!archive->mapped_zip.ReadAtOffset(reinterpret_cast<uint8_t*>(&lfh_start_bytes), in ParseZipArchive() 681 if (!mapped_zip.ReadAtOffset(ddBuf, sizeof(ddBuf), offset)) { in ValidateDataDescriptor() 790 if (!archive->mapped_zip.ReadAtOffset(lfh_buf, sizeof(lfh_buf), local_header_offset)) { in FindEntry() 824 if (!archive->mapped_zip.ReadAtOffset(name_buf.data(), name_buf.size(), name_offset)) { in FindEntry() 851 if (!archive->mapped_zip.ReadAtOffset(local_extra_field.data(), lfh_extra_field_size, in FindEntry() 1230 virtual bool ReadAtOffset(uint8_t* buf, size_t len, off64_t offset) const { in ReadAtOffset() function in EntryReader 1231 return zip_file_.ReadAtOffset(buf, len, entry_->offset + offset); in ReadAtOffset() [all …]
|
D | zip_archive_private.h | 57 bool ReadAtOffset(uint8_t* buf, size_t len, off64_t off) const;
|
D | zip_archive_stream_entry.cc | 94 if (!archive->mapped_zip.ReadAtOffset(data_.data(), bytes, offset_)) { in Read() 225 if (!archive->mapped_zip.ReadAtOffset(in_.data(), bytes, offset_)) { in Read()
|
D | zip_archive_test.cc | 893 bool ReadAtOffset(uint8_t* buf, size_t len, off64_t offset) const { in ReadAtOffset() function in VectorReader 925 bool ReadAtOffset(uint8_t*, size_t, off64_t) const { return false; } in ReadAtOffset() function in BadReader
|
/system/extras/simpleperf/ |
D | record_file_reader.cpp | 352 bool RecordFileReader::ReadAtOffset(uint64_t offset, void* buf, size_t len) { in ReadAtOffset() function in simpleperf::RecordFileReader 386 if (!ReadAtOffset(section.offset, data->data(), data->size())) { in ReadFeatureSection() 403 if (!ReadAtOffset(section.offset, data->data(), data->size())) { in ReadFeatureSection() 636 if (!ReadAtOffset(aux_offset - location->aux_offset + location->file_offset, buf, size)) { in ReadAuxData() 654 if (!ReadAtOffset(offset, buf.get(), AuxTraceRecord::Size())) { in BuildAuxDataLocation()
|
D | record_file.h | 160 bool ReadAtOffset(uint64_t offset, void* buf, size_t len);
|
D | cmd_debug_unwind.cpp | 469 if (!reader_->ReadAtOffset(offset, buffer.data(), nread) || in CopyDebugUnwindFile()
|
D | cmd_record.cpp | 1667 if (!reader->ReadAtOffset(offset, buf.data(), nread) || in MergeMapRecords()
|
/system/libziparchive/include/ziparchive/ |
D | zip_archive.h | 337 virtual bool ReadAtOffset(uint8_t* buf, size_t len, off64_t offset) const = 0;
|