/src/sys/external/bsd/gnu-efi/dist/apps/ |
t7.c | 6 EFI_STATUS 10 EFI_STATUS efi_status; local in function:efi_main 21 efi_status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &efi_input_key); 24 efi_input_key.ScanCode, efi_input_key.UnicodeChar, efi_status);
|
t3.c | 6 EFI_STATUS 13 EFI_STATUS efi_status; local in function:efi_main 35 efi_status = uefi_call_wrapper( 43 Print(L"%xh (%r)\n", efi_status, efi_status); 45 if (efi_status != EFI_SUCCESS) { 46 return efi_status;
|
AllocPages.c | 107 EFI_STATUS 111 EFI_STATUS efi_status; local in function:efi_main 178 efi_status = uefi_call_wrapper(BS->AllocatePages, 4, AllocType, MemType, NumPages, &Addr); 180 if ( EFI_ERROR(efi_status) ) { 181 Print(L"Allocate Pages Failed: %d\n", efi_status); 182 return efi_status;
|
FreePages.c | 81 EFI_STATUS 85 EFI_STATUS efi_status; local in function:efi_main 139 efi_status = uefi_call_wrapper(BS->FreePages, 2, PhysAddr, PgCnt); 141 if ( EFI_ERROR(efi_status) ) { 142 Print(L"Free Pages Failed: %d\n", efi_status); 143 return efi_status;
|
debughook.c | 6 EFI_STATUS 10 EFI_STATUS efi_status; local in function:GetVariableAttr 14 efi_status = uefi_call_wrapper(RT->GetVariable, 5, var, &owner, 16 if (efi_status != EFI_BUFFER_TOO_SMALL) 17 return efi_status; 23 efi_status = uefi_call_wrapper(RT->GetVariable, 5, var, &owner, 26 if (efi_status != EFI_SUCCESS) { 30 return efi_status; 33 EFI_STATUS 54 EFI_STATUS efi_status; local in function:DebugHook [all...] |
/src/sys/dev/efi/ |
efi.h | 71 typedef unsigned long efi_status; typedef in typeref:typename:unsigned long 146 efi_status (*rt_gettime)(struct efi_tm *, struct efi_tmcap *) 148 efi_status (*rt_settime)(struct efi_tm *) EFIAPI; 149 efi_status (*rt_getwaketime)(uint8_t *, uint8_t *, 151 efi_status (*rt_setwaketime)(uint8_t, struct efi_tm *) EFIAPI; 152 efi_status (*rt_setvirtual)(u_long, u_long, uint32_t, 154 efi_status (*rt_cvtptr)(u_long, void **) EFIAPI; 155 efi_status (*rt_getvar)(efi_char *, struct uuid *, uint32_t *, 157 efi_status (*rt_scanvar)(u_long *, efi_char *, struct uuid *) 159 efi_status (*rt_setvar)(efi_char *, struct uuid *, uint32_t [all...] |