Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_file_verifier.cc2136 bool DexFileVerifier::CheckIntraSectionIterate(uint32_t section_count) { in CheckIntraSectionIterate() argument
2153 for (uint32_t i = 0; i < section_count; i++) { in CheckIntraSectionIterate()
2404 uint32_t section_count = item->size_; in CheckIntraSection() local
2420 if (UNLIKELY(section_count != 1)) { in CheckIntraSection()
2435 if (!CheckIntraIdSection<type>(section_offset, section_count)) { \ in CheckIntraSection()
2448 if (UNLIKELY(section_count != 1)) { in CheckIntraSection()
2462 if (!CheckIntraSectionIterate<type>(section_count)) { \ in CheckIntraSection()
2472 if (!CheckIntraDataSection<type>(section_offset, section_count)) { \ in CheckIntraSection()
3431 uint32_t section_count = item->size_; in CheckInterSection() local
3463 if (!CheckInterSectionIterate(section_offset, section_count, type)) { in CheckInterSection()
/art/libprofile/profile/
Dprofile_compilation_info.cc1831 uint32_t section_count = header.GetFileSectionCount(); in LoadInternal() local
1832 uint32_t uncompressed_data_size = sizeof(FileHeader) + section_count * sizeof(FileSectionInfo); in LoadInternal()
1840 dchecked_vector<FileSectionInfo> section_infos(section_count); in LoadInternal()
1842 section_infos.data(), section_count * sizeof(FileSectionInfo), "ReadSectionInfos", error); in LoadInternal()
1872 DCHECK_NE(section_count, 0u); // Checked by `header.IsValid()` above. in LoadInternal()
1888 for (uint32_t i = 1u; i != section_count; ++i) { in LoadInternal()