Home | History | Annotate | Download | only in include

Lines Matching refs:Function

222 /* Trace verbosity level 2 [Function tracing and memory allocation] */
390 * The function name is also used by the function exit macros below.
404 * line number, function name, module(file) name, component ID
421 * debug message outside of the print function itself. This improves overall
446 #define ACPI_DO_DEBUG_PRINT(Function, Level, Line, Filename, Modulename, Component, ...) \
450 Function (Level, Line, Filename, Modulename, Component, __VA_ARGS__); \
469 * Function entry tracing
471 * The name of the function is emitted as a local variable that is
477 #define ACPI_TRACE_ENTRY(Name, Function, Type, Param) \
479 Function (ACPI_DEBUG_PARAMETERS, (Type) (Param))
501 * Function exit tracing
523 #define ACPI_TRACE_EXIT(Function, Type, Param) \
526 Function (ACPI_DEBUG_PARAMETERS, _Param); \
532 #define ACPI_TRACE_EXIT(Function, Type, Param) \
534 Function (ACPI_DEBUG_PARAMETERS, (Type) (Param)); \