Home
last modified time | relevance | path

Searched refs:section_count (Results 1 – 2 of 2) sorted by relevance

/art/libdexfile/dex/
Ddex_file_verifier.cc2038 bool DexFileVerifier::CheckIntraSectionIterate(size_t offset, uint32_t section_count) { in CheckIntraSectionIterate() argument
2055 for (uint32_t i = 0; i < section_count; i++) { in CheckIntraSectionIterate()
2309 uint32_t section_count = item->size_; in CheckIntraSection() local
2327 if (UNLIKELY(section_count != 1)) { in CheckIntraSection()
2341 if (!CheckIntraIdSection<type>(section_offset, section_count)) { \ in CheckIntraSection()
2355 if (UNLIKELY(section_count != 1)) { in CheckIntraSection()
2370 if (!CheckIntraSectionIterate<type>(section_offset, section_count)) { \ in CheckIntraSection()
2381 if (!CheckIntraDataSection<type>(section_offset, section_count)) { \ in CheckIntraSection()
3248 uint32_t section_count = item->size_; in CheckInterSection() local
3276 if (!CheckInterSectionIterate(section_offset, section_count, type)) { in CheckInterSection()
/art/libprofile/profile/
Dprofile_compilation_info.cc1796 uint32_t section_count = header.GetFileSectionCount(); in LoadInternal() local
1797 uint32_t uncompressed_data_size = sizeof(FileHeader) + section_count * sizeof(FileSectionInfo); in LoadInternal()
1805 dchecked_vector<FileSectionInfo> section_infos(section_count); in LoadInternal()
1807 section_infos.data(), section_count * sizeof(FileSectionInfo), "ReadSectionInfos", error); in LoadInternal()
1837 DCHECK_NE(section_count, 0u); // Checked by `header.IsValid()` above. in LoadInternal()
1853 for (uint32_t i = 1u; i != section_count; ++i) { in LoadInternal()