Lines Matching +full:line +full:- +full:orders
3 * Name: acoutput.h -- debug output
11 * Some or all of this work - Copyright (c) 1999 - 2025, Intel Corp.
28 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
104 * re-exports any such software from a foreign destination, Licensee shall
105 * ensure that the distribution and export/re-export of the software is in
106 * compliance with all laws, regulations, orders, or other restrictions of the
108 * any of its subsidiaries will export/re-export any technical data, process,
130 * 3. Neither the names of the above-listed copyright holders nor the names
157 * granularity of the output of the ACPI_DEBUG_PRINT macro -- on a
158 * per-component basis and a per-exception-type basis.
239 /* Exceptionally verbose output -- also used in the global "DebugLevel" */
254 * Exception level -- used in the global "DebugLevel"
266 /* Trace level -- also used in the global "DebugLevel" */
327 * For the no-debug and no-error-msg cases, we must at least define
342 * Error reporting. Callers module and line number are inserted by AE_INFO,
343 * the plist contains a set of parens to allow variable-length lists.
344 * These macros are used for both the debug and non-debug versions of the code.
381 * If ACPI_GET_FUNCTION_NAME was not defined in the compiler-dependent header,
389 * The Name parameter should be the procedure name as a non-quoted string.
397 /* Compiler supports __FUNCTION__ (or equivalent) -- Ignore this macro */
404 * line number, function name, module(file) name, component ID
446 #define ACPI_DO_DEBUG_PRINT(Function, Level, Line, Filename, Modulename, Component, ...) \ argument
450 Function (Level, Line, Filename, Modulename, Component, __VA_ARGS__); \
454 #define ACPI_ACTUAL_DEBUG(Level, Line, Filename, Modulename, Component, ...) \ argument
455 ACPI_DO_DEBUG_PRINT (AcpiDebugPrint, Level, Line, \
458 #define ACPI_ACTUAL_DEBUG_RAW(Level, Line, Filename, Modulename, Component, ...) \ argument
459 ACPI_DO_DEBUG_PRINT (AcpiDebugPrintRaw, Level, Line, \
511 * safer, since it avoids side-effects by guaranteeing that the argument will
514 * A less-safe version of the macros is provided for optional use if the
530 #else /* Use original less-safe macros */
585 * This is the non-debug case -- make everything go away,