Lines Matching refs:uefi_call_wrapper
74 uefi_call_wrapper(ST->ConOut->Reset, 2, ST->ConOut, TRUE);
75 uefi_call_wrapper(ST->ConOut->SetMode, 2, ST->ConOut, 0);
76 uefi_call_wrapper(ST->ConOut->EnableCursor, 2, ST->ConOut, TRUE);
78 status = uefi_call_wrapper(BS->AllocatePages, 4, AllocateAnyPages, EfiLoaderData, sz, &heap_start);
83 status = uefi_call_wrapper(BS->HandleProtocol, 3, imageHandle, &LoadedImageProtocol, (void **)&efi_li);
86 status = uefi_call_wrapper(BS->HandleProtocol, 3, efi_li->DeviceHandle, &DevicePathProtocol, (void **)&efi_bootdp);
128 status = uefi_call_wrapper(BS->ExitBootServices, 2, IH, mapkey);
144 status = uefi_call_wrapper(BS->Exit, 4, IH, EFI_ABORTED, 0, NULL);
152 uefi_call_wrapper(RT->ResetSystem, 4, EfiResetCold, EFI_SUCCESS, 0, NULL);
164 status = uefi_call_wrapper(BS->CreateEvent, 5, EVT_TIMER, TPL_APPLICATION, 0, 0, &delay_ev);
169 uefi_call_wrapper(BS->SetTimer, 3, delay_ev, TimerRelative, us * 10);
170 uefi_call_wrapper(BS->WaitForEvent, 3, 1, &delay_ev, &val);