Searched refs:AtType (Results 1 – 2 of 2) sorted by relevance
/DragonOS-0.1.8/kernel/src/process/ |
D | abi.rs | 3 pub enum AtType { enum 54 impl TryFrom<u32> for AtType { implementation 59 0 => Ok(AtType::Null), in try_from() 60 1 => Ok(AtType::Ignore), in try_from() 61 2 => Ok(AtType::ExecFd), in try_from() 62 3 => Ok(AtType::Phdr), in try_from() 63 4 => Ok(AtType::PhEnt), in try_from() 64 5 => Ok(AtType::PhNum), in try_from() 65 6 => Ok(AtType::PageSize), in try_from() 66 7 => Ok(AtType::Base), in try_from() [all …]
|
/DragonOS-0.1.8/kernel/src/libs/ |
D | elf.rs | 23 abi::AtType, 353 .insert(AtType::PhEnt as u8, ehdr.e_phentsize as usize); in create_auxv() 356 .insert(AtType::PageSize as u8, MMArch::PAGE_SIZE); in create_auxv() 357 init_info.auxv.insert(AtType::Phdr as u8, phdr_vaddr.data()); in create_auxv() 360 .insert(AtType::PhNum as u8, ehdr.e_phnum as usize); in create_auxv() 363 .insert(AtType::Entry as u8, entrypoint_vaddr.data()); in create_auxv()
|