Lines Matching defs:Status
33 EFI_STATUS Status;
35 EFI_STATUS Status __unused;
43 Status = uefi_call_wrapper(
52 if ( EFI_ERROR( Status ) ) return NULL ;
53 ASSERT (!EFI_ERROR(Status));
59 Status = uefi_call_wrapper(
66 if ( EFI_ERROR( Status ) ) return NULL ;
67 ASSERT (!EFI_ERROR(Status));
85 EFI_STATUS Status;
95 Status = uefi_call_wrapper(BS->CreateEvent, 5, EVT_TIMER, 0, NULL, NULL, &TimerEvent);
96 if (!EFI_ERROR(Status)) {
110 Status = uefi_call_wrapper(BS->WaitForEvent, 3, 2, WaitList, &Index);
117 if (!EFI_ERROR(Status) && Index == 1) {
118 Status = EFI_TIMEOUT;
128 Status = uefi_call_wrapper(BS->WaitForEvent, 3, 1, &Event, &Index);
129 ASSERT (!EFI_ERROR(Status));
133 return Status;
147 EFI_STATUS Status;
151 Status = WaitForSingleEvent (Event, 10000000);
152 if (Status == EFI_SUCCESS) {