Searched refs:section_count (Results 1 – 2 of 2) sorted by relevance
/art/libdexfile/dex/ |
D | dex_file_verifier.cc | 2043 bool DexFileVerifier::CheckIntraSectionIterate(size_t offset, uint32_t section_count) { in CheckIntraSectionIterate() argument 2060 for (uint32_t i = 0; i < section_count; i++) { in CheckIntraSectionIterate() 2314 uint32_t section_count = item->size_; in CheckIntraSection() local 2332 if (UNLIKELY(section_count != 1)) { in CheckIntraSection() 2346 if (!CheckIntraIdSection<type>(section_offset, section_count)) { \ in CheckIntraSection() 2360 if (UNLIKELY(section_count != 1)) { in CheckIntraSection() 2375 if (!CheckIntraSectionIterate<type>(section_offset, section_count)) { \ in CheckIntraSection() 2386 if (!CheckIntraDataSection<type>(section_offset, section_count)) { \ in CheckIntraSection() 3253 uint32_t section_count = item->size_; in CheckInterSection() local 3281 if (!CheckInterSectionIterate(section_offset, section_count, type)) { in CheckInterSection()
|
/art/libprofile/profile/ |
D | profile_compilation_info.cc | 1717 uint32_t section_count = header.GetFileSectionCount(); in LoadInternal() local 1718 uint32_t uncompressed_data_size = sizeof(FileHeader) + section_count * sizeof(FileSectionInfo); in LoadInternal() 1726 dchecked_vector<FileSectionInfo> section_infos(section_count); in LoadInternal() 1728 section_infos.data(), section_count * sizeof(FileSectionInfo), "ReadSectionInfos", error); in LoadInternal() 1758 DCHECK_NE(section_count, 0u); // Checked by `header.IsValid()` above. in LoadInternal() 1774 for (uint32_t i = 1u; i != section_count; ++i) { in LoadInternal()
|