Lines Matching refs:it
501 for (const JITCodeEntry* it = descriptor.head_; it != nullptr; it = it->next_) { in RepackEntries() local
502 if (it == descriptor.zygote_head_entry_ && !is_zygote) { in RepackEntries()
505 if (it->allow_packing_) { in RepackEntries()
506 if (!compress_entries && it->is_compressed_ && removed.empty()) { in RepackEntries()
509 entries.push_back(it); in RepackEntries()
560 for (auto it : elfs) { in RepackEntries() local
561 DeleteJITCodeEntryInternal<JitNativeInfo>(/*entry=*/ it); in RepackEntries()
624 for (const JITCodeEntry* it = __jit_debug_descriptor.head_; it != nullptr;) { in RepackNativeDebugInfoForJitLocked() local
625 const JITCodeEntry* next = it->next_; in RepackNativeDebugInfoForJitLocked()
626 if (!it->allow_packing_ && std::binary_search(removed.begin(), removed.end(), it->addr_)) { in RepackNativeDebugInfoForJitLocked()
627 DeleteJITCodeEntryInternal<JitNativeInfo>(/*entry=*/ it); in RepackNativeDebugInfoForJitLocked()
629 it = next; in RepackNativeDebugInfoForJitLocked()
644 for (const JITCodeEntry* it = __jit_debug_descriptor.head_; it != nullptr; it = it->next_) { in GetJitMiniDebugInfoMemUsage() local
645 size += sizeof(JITCodeEntry) + it->symfile_size_; in GetJitMiniDebugInfoMemUsage()
658 for (const JITCodeEntry* it = __jit_debug_descriptor.head_; it != end; it = it->next_) { in ForEachNativeDebugSymbol() local
659 ArrayRef<const uint8_t> buffer(it->symfile_addr_, it->symfile_size_); in ForEachNativeDebugSymbol()