Home
last modified time | relevance | path

Searched refs:section_offset (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Dvdex_file.h93 uint32_t section_offset; member
97 : section_kind(kind), section_offset(offset), section_size(size) {} in VdexSectionHeader()
154 GetSectionHeaderAt(i).section_offset + GetSectionHeaderAt(i).section_size); in GetComputedFileSize()
175 Begin() + GetSectionHeader(VdexSection::kChecksumSection).section_offset); in GetDexChecksumsArray()
258 Begin() + GetSectionHeader(VdexSection::kVerifierDepsSection).section_offset, in GetVerifierDepsData()
316 return Begin() + GetSectionHeader(VdexSection::kDexFileSection).section_offset; in DexBegin()
321 return Begin() + GetSectionHeader(VdexSection::kTypeLookupTableSection).section_offset; in TypeLookupTableDataBegin()
Dvdex_file.cc280 sections[VdexSection::kChecksumSection].section_offset = GetChecksumsOffset(); in WriteToDisk()
286 sections[VdexSection::kDexFileSection].section_offset = 0u; in WriteToDisk()
291 sections[VdexSection::kVerifierDepsSection].section_offset = in WriteToDisk()
298 sections[VdexSection::kTypeLookupTableSection].section_offset = in WriteToDisk()
299 sections[VdexSection::kVerifierDepsSection].section_offset + verifier_deps_with_padding_size; in WriteToDisk()
/art/libdexfile/dex/
Ddex_file_verifier.cc2403 uint32_t section_offset = item->offset_; in CheckIntraSection() local
2409 if (UNLIKELY(offset > section_offset)) { in CheckIntraSection()
2410 ErrorStringPrintf("Section overlap or out-of-order map: %zx, %x", offset, section_offset); in CheckIntraSection()
2413 if (!CheckPadding(section_offset, type)) { in CheckIntraSection()
2425 if (UNLIKELY(section_offset != expected)) { in CheckIntraSection()
2426 ErrorStringPrintf("Header at %x, expected %x", section_offset, expected); in CheckIntraSection()
2435 if (!CheckIntraIdSection<type>(section_offset, section_count)) { \ in CheckIntraSection()
2452 if (UNLIKELY(section_offset != header_->map_off_)) { in CheckIntraSection()
2454 section_offset, header_->map_off_); in CheckIntraSection()
2472 if (!CheckIntraDataSection<type>(section_offset, section_count)) { \ in CheckIntraSection()
[all …]