void AcpiUtStatusExit ( UINT32 LineNumber, const char *FunctionName, char *ModuleName, UINT32 ComponentId, ACPI_STATUS Status) { if (ACPI_SUCCESS (Status)) { AcpiUtDebugPrint (ACPI_LV_FUNCTIONS, LineNumber, FunctionName, ModuleName, ComponentId, "%s %s\n", AcpiGbl_FnExitStr, AcpiFormatException (Status)); } else { AcpiUtDebugPrint (ACPI_LV_FUNCTIONS, LineNumber, FunctionName, ModuleName, ComponentId, "%s ****Exception****: %s\n", AcpiGbl_FnExitStr, AcpiFormatException (Status)); } AcpiGbl_NestingLevel--; }
void AcpiUtExit ( UINT32 LineNumber, ACPI_DEBUG_PRINT_INFO *DbgInfo) { AcpiUtDebugPrint (ACPI_LV_FUNCTIONS, LineNumber, DbgInfo, "%s\n", AcpiGbl_FnExitStr); AcpiGbl_NestingLevel--; }
void AcpiUtValueExit ( UINT32 LineNumber, ACPI_DEBUG_PRINT_INFO *DbgInfo, ACPI_INTEGER Value) { AcpiUtDebugPrint (ACPI_LV_FUNCTIONS, LineNumber, DbgInfo, "%s %08X\n", AcpiGbl_FnExitStr, Value); AcpiGbl_NestingLevel--; }
void AcpiUtTracePtr ( UINT32 LineNumber, ACPI_DEBUG_PRINT_INFO *DbgInfo, void *Pointer) { AcpiGbl_NestingLevel++; AcpiUtTrackStackPtr (); AcpiUtDebugPrint (ACPI_LV_FUNCTIONS, LineNumber, DbgInfo, "%s %p\n", AcpiGbl_FnEntryStr, Pointer); }
void AcpiUtStatusExit ( UINT32 LineNumber, ACPI_DEBUG_PRINT_INFO *DbgInfo, ACPI_STATUS Status) { if (ACPI_SUCCESS (Status)) { AcpiUtDebugPrint (ACPI_LV_FUNCTIONS, LineNumber, DbgInfo, "%s %s\n", AcpiGbl_FnExitStr, AcpiFormatException (Status)); } else { AcpiUtDebugPrint (ACPI_LV_FUNCTIONS, LineNumber, DbgInfo, "%s ****Exception****: %s\n", AcpiGbl_FnExitStr, AcpiFormatException (Status)); } AcpiGbl_NestingLevel--; }
void AcpiUtTraceStr ( UINT32 LineNumber, ACPI_DEBUG_PRINT_INFO *DbgInfo, NATIVE_CHAR *String) { AcpiGbl_NestingLevel++; AcpiUtTrackStackPtr (); AcpiUtDebugPrint (ACPI_LV_FUNCTIONS, LineNumber, DbgInfo, "%s %s\n", AcpiGbl_FnEntryStr, String); }
void AcpiUtExit ( UINT32 LineNumber, const char *FunctionName, char *ModuleName, UINT32 ComponentId) { AcpiUtDebugPrint (ACPI_LV_FUNCTIONS, LineNumber, FunctionName, ModuleName, ComponentId, "%s\n", AcpiGbl_FnExitStr); AcpiGbl_NestingLevel--; }
void AcpiUtTracePtr ( UINT32 LineNumber, const char *FunctionName, char *ModuleName, UINT32 ComponentId, void *Pointer) { AcpiGbl_NestingLevel++; AcpiUtTrackStackPtr (); AcpiUtDebugPrint (ACPI_LV_FUNCTIONS, LineNumber, FunctionName, ModuleName, ComponentId, "%s %p\n", AcpiGbl_FnEntryStr, Pointer); }
void AcpiUtValueExit ( UINT32 LineNumber, const char *FunctionName, char *ModuleName, UINT32 ComponentId, ACPI_INTEGER Value) { AcpiUtDebugPrint (ACPI_LV_FUNCTIONS, LineNumber, FunctionName, ModuleName, ComponentId, "%s %8.8X%8.8X\n", AcpiGbl_FnExitStr, ACPI_FORMAT_UINT64 (Value)); AcpiGbl_NestingLevel--; }