Searched refs:efi_status (Results 1 - 5 of 5) sorted by relevance

/external/syslinux/gnu-efi/gnu-efi-3.0/apps/
H A DFreePages.c84 EFI_STATUS efi_status; local
98 efi_status = uefi_call_wrapper( BS->HandleProtocol, 3, image,
156 efi_status = uefi_call_wrapper(BS->FreePages, 2, PhysAddr, PgCnt);
158 if ( EFI_ERROR(efi_status) ) {
159 Print(L"Free Pages Failed: %d\n", efi_status);
160 return efi_status;
H A Dt3.c11 EFI_STATUS efi_status; local
33 efi_status = uefi_call_wrapper(
41 Print(L"%xh (%r)\n", efi_status, efi_status);
43 if (efi_status != EFI_SUCCESS) {
44 return efi_status;
H A Dt7.c8 EFI_STATUS efi_status; local
19 efi_status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &efi_input_key);
H A DAllocPages.c110 EFI_STATUS efi_status; local
126 efi_status = uefi_call_wrapper( BS->HandleProtocol, 3, image,
196 efi_status = uefi_call_wrapper(BS->AllocatePages, 4, AllocType, MemType, NumPages, &Addr);
198 if ( EFI_ERROR(efi_status) ) {
199 Print(L"Allocate Pages Failed: %d\n", efi_status);
200 return efi_status;
/external/syslinux/efi/
H A Dmain.c638 EFI_STATUS efi_status; local
641 efi_status = uefi_call_wrapper( BS->CreateEvent, 5, EVT_TIMER|EVT_NOTIFY_SIGNAL, TPL_NOTIFY, (EFI_EVENT_NOTIFY)timer_handler, NULL, ev);
642 if (efi_status == EFI_SUCCESS) {
643 efi_status = uefi_call_wrapper(BS->SetTimer, 3, *ev, TimerPeriodic, DEFAULT_TIMER_TICK_DURATION);
645 return efi_status;

Completed in 1063 milliseconds