Lines Matching full:exception
4 * Module Name: utexcep - Exception code support
23 * RETURN: A string containing the exception text. A valid pointer is
26 * DESCRIPTION: This function translates an ACPI exception into an ASCII
32 const struct acpi_exception_info *exception; in acpi_format_exception() local
36 exception = acpi_ut_validate_exception(status); in acpi_format_exception()
37 if (!exception) { in acpi_format_exception()
39 /* Exception code was not recognized */ in acpi_format_exception()
42 "Unknown exception code: 0x%8.8X", status)); in acpi_format_exception()
47 return (exception->name); in acpi_format_exception()
58 * RETURN: A string containing the exception text. NULL if exception is in ACPI_EXPORT_SYMBOL()
61 * DESCRIPTION: This function validates and translates an ACPI exception into in ACPI_EXPORT_SYMBOL()
68 const struct acpi_exception_info *exception = NULL; in ACPI_EXPORT_SYMBOL() local
81 exception = &acpi_gbl_exception_names_env[sub_status]; in ACPI_EXPORT_SYMBOL()
88 exception = &acpi_gbl_exception_names_pgm[sub_status]; in ACPI_EXPORT_SYMBOL()
95 exception = &acpi_gbl_exception_names_tbl[sub_status]; in ACPI_EXPORT_SYMBOL()
102 exception = &acpi_gbl_exception_names_aml[sub_status]; in ACPI_EXPORT_SYMBOL()
109 exception = &acpi_gbl_exception_names_ctrl[sub_status]; in ACPI_EXPORT_SYMBOL()
118 if (!exception || !exception->name) { in ACPI_EXPORT_SYMBOL()
122 return (exception); in ACPI_EXPORT_SYMBOL()