Home | History | Annotate | Download | only in lib

Lines Matching refs:Status

30     EFI_STATUS              Status;
37 Status = uefi_call_wrapper(
46 ASSERT (!EFI_ERROR(Status));
52 Status = uefi_call_wrapper(
60 ASSERT (!EFI_ERROR(Status));
78 EFI_STATUS Status;
88 Status = uefi_call_wrapper(BS->CreateEvent, 5, EVT_TIMER, 0, NULL, NULL, &TimerEvent);
89 if (!EFI_ERROR(Status)) {
103 Status = uefi_call_wrapper(BS->WaitForEvent, 3, 2, WaitList, &Index);
110 if (!EFI_ERROR(Status) && Index == 1) {
111 Status = EFI_TIMEOUT;
121 Status = uefi_call_wrapper(BS->WaitForEvent, 3, 1, &Event, &Index);
122 ASSERT (!EFI_ERROR(Status));
126 return Status;
140 EFI_STATUS Status;
144 Status = WaitForSingleEvent (Event, 10000000);
145 if (Status == EFI_SUCCESS) {