Home
last modified time | relevance | path

Searched refs:start_offset_ (Results 1 – 9 of 9) sorted by relevance

/aosp12/art/libdexfile/dex/
H A Ddex_file_layout.h73 uint32_t start_offset_ = 0u;
77 return start_offset_ <= offset && offset < end_offset_; in Contains()
81 DCHECK_LE(start_offset_, end_offset_); in Size()
82 return end_offset_ - start_offset_; in Size()
87 if (start_offset_ == end_offset_) { in CombineSection()
88 start_offset_ = start_offset; in CombineSection()
91 start_offset_ = std::min(start_offset_, start_offset); in CombineSection()
H A Ddex_file_layout.cc52 DCHECK_LT(start_offset_, dex_file->Size()); in Madvise()
54 MadviseLargestPageAlignedRegion(dex_file->Begin() + start_offset_, in Madvise()
101 << part.start_offset_ << "-" << part.end_offset_ << ") "; in operator <<()
/aosp12/system/unwinding/libunwindstack/
H A DElfInterfaceArm.cpp38 if (start_offset_ == 0 || total_entries_ == 0) { in FindEntry()
49 if (!GetPrel31Addr(start_offset_ + current * 8, &addr)) { in FindEntry()
55 *entry_offset = start_offset_ + current * 8; in FindEntry()
65 *entry_offset = start_offset_ + (last - 1) * 8; in FindEntry()
96 start_offset_ = ph_offset; in HandleUnknownType()
H A DElfInterfaceArm.h51 if (!interface_->GetPrel31Addr(interface_->start_offset_ + index_ * 8, &addr)) {
82 uint64_t start_offset() { return start_offset_; } in start_offset()
89 uint64_t start_offset_ = 0;
/aosp12/system/core/fastboot/device/
H A Dcommands.cpp741 start_offset_ = 0; in Open()
743 if (!android::base::ParseUint(args_->at(2), &start_offset_)) { in Open()
747 if (start_offset_ > std::numeric_limits<off64_t>::max()) { in Open()
753 if (start_offset_ > partition_size_) { in Open()
793 CHECK(start_offset_ <= std::numeric_limits<off64_t>::max()); in Fetch()
794 if (lseek64(handle_.fd(), start_offset_, SEEK_SET) != static_cast<off64_t>(start_offset_)) { in Fetch()
797 start_offset_, strerror(errno))); in Fetch()
807 uint64_t end_offset = start_offset_ + total_size_to_read_; in Fetch()
809 uint64_t current_offset = start_offset_; in Fetch()
833 start_offset_, total_size_to_read_)); in Fetch()
[all …]
/aosp12/art/dexlayout/
H A Dcompact_dex_writer.cc114 start_offset_(stream->Tell()) { in ScopedDataSectionItem()
123 const uint32_t deduped_offset = deduper_->Dedupe(start_offset_, in ~ScopedDataSectionItem()
132 stream_->Clear(start_offset_, stream_->Tell() - start_offset_); in ~ScopedDataSectionItem()
134 stream_->Seek(start_offset_); in ~ScopedDataSectionItem()
139 return stream_->Tell() - start_offset_; in Written()
H A Dcompact_dex_writer.h106 const uint32_t start_offset_; variable
/aosp12/system/unwinding/libunwindstack/tests/
H A DElfFake.h150 void FakeSetStartOffset(uint64_t offset) { start_offset_ = offset; } in FakeSetStartOffset()
/aosp12/art/compiler/optimizing/
H A Dcode_generator.cc333 : codegen_(codegen), instruction_(instruction), start_offset_(static_cast<size_t>(-1)) { in DisassemblyScope()
335 start_offset_ = codegen_.GetAssembler().CodeSize(); in DisassemblyScope()
343 instruction_, start_offset_, codegen_.GetAssembler().CodeSize()); in ~DisassemblyScope()
350 size_t start_offset_; member in art::DisassemblyScope