Lines Matching refs:status
151 EFI_STATUS status; in efi_get_time() local
158 status = efi_rs->GetTime(&time, NULL); in efi_get_time()
162 if ( EFI_ERROR(status) ) in efi_get_time()
171 EFI_STATUS status; in efi_halt_system() local
176 status = efi_rs->ResetSystem(EfiResetShutdown, EFI_SUCCESS, 0, NULL); in efi_halt_system()
179 printk(XENLOG_WARNING "EFI: could not halt system (%#lx)\n", status); in efi_halt_system()
184 EFI_STATUS status; in efi_reset_system() local
189 status = efi_rs->ResetSystem(warm ? EfiResetWarm : EfiResetCold, in efi_reset_system()
193 printk(XENLOG_WARNING "EFI: could not reset system (%#lx)\n", status); in efi_reset_system()
355 EFI_STATUS status = EFI_NOT_STARTED; in efi_runtime_call() local
377 status = efi_rs->GetTime(cast_time(&op->u.get_time.time), &caps); in efi_runtime_call()
381 if ( !EFI_ERROR(status) ) in efi_runtime_call()
399 status = efi_rs->SetTime(cast_time(&op->u.set_time)); in efi_runtime_call()
415 status = efi_rs->GetWakeupTime(&enabled, &pending, in efi_runtime_call()
420 if ( !EFI_ERROR(status) ) in efi_runtime_call()
439 status = efi_rs->SetWakeupTime(!!(op->misc & in efi_runtime_call()
457 status = efi_rs->GetNextHighMonotonicCount(&op->misc); in efi_runtime_call()
502 status = efi_rs->GetVariable( in efi_runtime_call()
507 if ( !EFI_ERROR(status) && in efi_runtime_call()
549 status = efi_rs->SetVariable( in efi_runtime_call()
587 status = efi_rs->GetNextVariableName( in efi_runtime_call()
596 if ( !EFI_ERROR(status) && in efi_runtime_call()
629 status = EFI_SUCCESS; in efi_runtime_call()
634 status = efi_boot_max_var_size; in efi_runtime_call()
644 status = efi_rs->QueryVariableInfo( in efi_runtime_call()
665 op->status = status; in efi_runtime_call()
667 op->status = (status & 0x3fffffff) | ((status >> 32) & 0xc0000000); in efi_runtime_call()