Lines Matching full:exception
3 * Module Name: utexcep - Exception code support
169 * RETURN: A string containing the exception text. A valid pointer is
172 * DESCRIPTION: This function translates an ACPI exception into an ASCII
181 const ACPI_EXCEPTION_INFO *Exception;
187 Exception = AcpiUtValidateException (Status);
188 if (!Exception)
190 /* Exception code was not recognized */
193 "Unknown exception code: 0x%8.8X", Status));
198 return (Exception->Name);
210 * RETURN: A string containing the exception text. NULL if exception is
213 * DESCRIPTION: This function validates and translates an ACPI exception into
223 const ACPI_EXCEPTION_INFO *Exception = NULL;
240 Exception = &AcpiGbl_ExceptionNames_Env [SubStatus];
248 Exception = &AcpiGbl_ExceptionNames_Pgm [SubStatus];
256 Exception = &AcpiGbl_ExceptionNames_Tbl [SubStatus];
264 Exception = &AcpiGbl_ExceptionNames_Aml [SubStatus];
272 Exception = &AcpiGbl_ExceptionNames_Ctrl [SubStatus];
281 if (!Exception || !Exception->Name)
286 return (Exception);