Lines Matching refs:status
134 acpi_status status = AE_OK; in ae_local_load_table() local
146 status = acpi_tb_recognize_table(&table_info, ACPI_TABLE_ALL); in ae_local_load_table()
147 if (ACPI_FAILURE(status)) { in ae_local_load_table()
148 return_ACPI_STATUS(status); in ae_local_load_table()
153 status = acpi_tb_init_table_descriptor(&table_info); in ae_local_load_table()
154 if (ACPI_FAILURE(status)) { in ae_local_load_table()
155 if (status == AE_ALREADY_EXISTS) { in ae_local_load_table()
159 status = AE_OK; in ae_local_load_table()
165 return_ACPI_STATUS(status); in ae_local_load_table()
169 status = in ae_local_load_table()
171 if (ACPI_FAILURE(status)) { in ae_local_load_table()
176 return_ACPI_STATUS(status); in ae_local_load_table()
181 return_ACPI_STATUS(status); in ae_local_load_table()
204 acpi_status status; in acpi_db_get_table_from_file() local
208 status = acpi_ut_read_table_from_file(filename, &table); in acpi_db_get_table_from_file()
209 if (ACPI_FAILURE(status)) { in acpi_db_get_table_from_file()
210 return (status); in acpi_db_get_table_from_file()
228 status = ae_local_load_table(table); in acpi_db_get_table_from_file()
229 if (ACPI_FAILURE(status)) { in acpi_db_get_table_from_file()
230 if (status == AE_ALREADY_EXISTS) { in acpi_db_get_table_from_file()
236 acpi_format_exception(status)); in acpi_db_get_table_from_file()
239 return (status); in acpi_db_get_table_from_file()