Lines Matching refs:elf
78 for (auto* elf : elf_list_) { in ~JitDebug() local
79 delete elf; in ~JitDebug()
192 for (Elf* elf : elf_list_) { in GetElf()
193 if (elf->IsValidPc(pc)) { in GetElf()
194 return elf; in GetElf()
203 Elf* elf = new Elf(new MemoryRange(memory_, start, size, 0)); in GetElf() local
204 elf->Init(); in GetElf()
205 if (!elf->valid()) { in GetElf()
209 delete elf; in GetElf()
212 elf_list_.push_back(elf); in GetElf()
214 if (elf->IsValidPc(pc)) { in GetElf()
215 return elf; in GetElf()