Home
last modified time | relevance | path

Searched refs:EfiAllocator (Results 1 – 1 of 1) sorted by relevance

/bootable/libbootloader/gbl/libefi/src/
Dallocation.rs22 pub enum EfiAllocator { enum
29 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 { impl
79 EfiAllocator::Initialized(ref entry) => Some(entry), in get_efi_entry()
112 unsafe impl GlobalAlloc for EfiAllocator { implementation