Searched refs:EfiAllocator (Results 1 – 1 of 1) sorted by relevance
22 pub enum EfiAllocator { enum29 static mut EFI_GLOBAL_ALLOCATOR: EfiAllocator = EfiAllocator::Uninitialized;52 EfiAllocator::Uninitialized => { in init_efi_global_alloc()53 EFI_GLOBAL_ALLOCATOR = EfiAllocator::Initialized(efi_entry); in init_efi_global_alloc()71 EFI_GLOBAL_ALLOCATOR = EfiAllocator::Exited; in exit_efi_global_alloc()75 impl EfiAllocator { impl79 EfiAllocator::Initialized(ref entry) => Some(entry), in get_efi_entry()112 unsafe impl GlobalAlloc for EfiAllocator { implementation