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