Searched refs:ElfType (Results 1 – 1 of 1) sorted by relevance
71 if ElfType::from(ehdr.e_type) != ElfType::Executable in inner_probe_common()72 && ElfType::from(ehdr.e_type) != ElfType::DSO in inner_probe_common()531 let elf_type = ElfType::from(ehdr.e_type); in load()664 } else if elf_type == ElfType::Executable { in load()671 } else if elf_type == ElfType::DSO { in load()719 if elf_type == ElfType::DSO { in load()875 pub enum ElfType { enum888 impl From<u16> for ElfType { implementation