Home
last modified time | relevance | path

Searched refs:data_offset_ (Results 1 – 10 of 10) sorted by relevance

/aosp12/system/unwinding/libunwindstack/include/unwindstack/
H A DDwarfMemory.h55 void set_data_offset(uint64_t offset) { data_offset_ = offset; } in set_data_offset()
56 void clear_data_offset() { data_offset_ = static_cast<uint64_t>(-1); } in clear_data_offset()
69 uint64_t data_offset_ = static_cast<uint64_t>(-1); variable
H A DElfInterface.h106 uint64_t data_offset() { return data_offset_; } in data_offset()
147 uint64_t data_offset_ = 0; variable
/aosp12/system/unwinding/libunwindstack/
H A DDwarfMemory.cpp128 if (data_offset_ == static_cast<uint64_t>(-1)) { in AdjustEncodedValue()
132 *value += data_offset_; in AdjustEncodedValue()
H A DElfInterface.cpp338 data_offset_ = shdr.sh_offset; in ReadSectionHeaders()
341 data_offset_ = 0; in ReadSectionHeaders()
/aosp12/art/runtime/
H A Dimage.cc179 memcpy(out_ptr + image_offset_, in_ptr + data_offset_, data_size_); in Decompress()
186 reinterpret_cast<const char*>(in_ptr) + data_offset_, in Decompress()
H A Dimage.h94 data_offset_(data_offset), in Block()
118 uint32_t data_offset_ = 0u; variable
/aosp12/system/unwinding/libunwindstack/tests/
H A DElfFake.h103 void FakeSetDataOffset(uint64_t offset) { data_offset_ = offset; } in FakeSetDataOffset()
H A DElfTest.cpp355 void MockSetDataOffset(uint64_t offset) { data_offset_ = offset; } in MockSetDataOffset()
/aosp12/art/dexlayout/
H A Ddex_writer.cc865 uint32_t data_offset_ = 0u; in Write() local
869 data_offset_ = stream->Tell(); in Write()
924 header_->SetDataSize(stream->Tell() - data_offset_); in Write()
927 header_->SetDataOffset(data_offset_); in Write()
H A Ddex_ir.h425 uint32_t DataOffset() const { return data_offset_; } in DataOffset()
436 void SetDataOffset(uint32_t new_data_offset) { data_offset_ = new_data_offset; } in SetDataOffset()
524 uint32_t data_offset_; variable
544 data_offset_ = data_offset; in ConstructorHelper()