Lines Matching refs:status

80 	acpi_status status;  in acpi_ev_enable_gpe()  local
86 status = acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_ENABLE); in acpi_ev_enable_gpe()
87 return_ACPI_STATUS(status); in acpi_ev_enable_gpe()
162 acpi_status status = AE_OK; in acpi_ev_add_gpe_reference() local
179 status = acpi_ev_update_gpe_enable_mask(gpe_event_info); in acpi_ev_add_gpe_reference()
180 if (ACPI_SUCCESS(status)) { in acpi_ev_add_gpe_reference()
181 status = acpi_ev_enable_gpe(gpe_event_info); in acpi_ev_add_gpe_reference()
184 if (ACPI_FAILURE(status)) { in acpi_ev_add_gpe_reference()
189 return_ACPI_STATUS(status); in acpi_ev_add_gpe_reference()
208 acpi_status status = AE_OK; in acpi_ev_remove_gpe_reference() local
221 status = acpi_ev_update_gpe_enable_mask(gpe_event_info); in acpi_ev_remove_gpe_reference()
222 if (ACPI_SUCCESS(status)) { in acpi_ev_remove_gpe_reference()
223 status = in acpi_ev_remove_gpe_reference()
228 if (ACPI_FAILURE(status)) { in acpi_ev_remove_gpe_reference()
233 return_ACPI_STATUS(status); in acpi_ev_remove_gpe_reference()
458 acpi_status status = AE_OK; in acpi_ev_asynch_execute_gpe_method() local
480 while (ACPI_SUCCESS(status) && notify) { in acpi_ev_asynch_execute_gpe_method()
481 status = in acpi_ev_asynch_execute_gpe_method()
496 status = AE_NO_MEMORY; in acpi_ev_asynch_execute_gpe_method()
506 status = acpi_ns_evaluate(info); in acpi_ev_asynch_execute_gpe_method()
510 if (ACPI_FAILURE(status)) { in acpi_ev_asynch_execute_gpe_method()
511 ACPI_EXCEPTION((AE_INFO, status, in acpi_ev_asynch_execute_gpe_method()
526 status = acpi_os_execute(OSL_NOTIFY_HANDLER, in acpi_ev_asynch_execute_gpe_method()
528 if (ACPI_SUCCESS(status)) { in acpi_ev_asynch_execute_gpe_method()
580 acpi_status status; in acpi_ev_finish_gpe() local
588 status = acpi_hw_clear_gpe(gpe_event_info); in acpi_ev_finish_gpe()
589 if (ACPI_FAILURE(status)) { in acpi_ev_finish_gpe()
590 return (status); in acpi_ev_finish_gpe()
637 acpi_status status; in acpi_ev_detect_gpe() local
659 status = acpi_hw_gpe_read(&enable_reg, &gpe_register_info->enable_address); in acpi_ev_detect_gpe()
660 if (ACPI_FAILURE(status)) { in acpi_ev_detect_gpe()
666 status = acpi_hw_gpe_read(&status_reg, &gpe_register_info->status_address); in acpi_ev_detect_gpe()
667 if (ACPI_FAILURE(status)) { in acpi_ev_detect_gpe()
751 acpi_status status; in acpi_ev_gpe_dispatch() local
765 status = acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_DISABLE); in acpi_ev_gpe_dispatch()
766 if (ACPI_FAILURE(status)) { in acpi_ev_gpe_dispatch()
767 ACPI_EXCEPTION((AE_INFO, status, in acpi_ev_gpe_dispatch()
778 status = acpi_hw_clear_gpe(gpe_event_info); in acpi_ev_gpe_dispatch()
779 if (ACPI_FAILURE(status)) { in acpi_ev_gpe_dispatch()
780 ACPI_EXCEPTION((AE_INFO, status, in acpi_ev_gpe_dispatch()
823 status = acpi_os_execute(OSL_GPE_HANDLER, in acpi_ev_gpe_dispatch()
826 if (ACPI_FAILURE(status)) { in acpi_ev_gpe_dispatch()
827 ACPI_EXCEPTION((AE_INFO, status, in acpi_ev_gpe_dispatch()