Home
last modified time | relevance | path

Searched refs:_PRINTVF (Results 1 – 1 of 1) sorted by relevance

/bionic/linker/
Dlinker_debug.h71 #define _PRINTVF(v,f,x...) \ macro
77 #define _PRINTVF(v,f,x...) \ macro
83 #define _PRINTVF(v,f,x...) do {} while(0) macro
86 #define PRINT(x...) _PRINTVF(-1, FALSE, x)
87 #define INFO(x...) _PRINTVF(0, TRUE, x)
88 #define TRACE(x...) _PRINTVF(1, TRUE, x)
90 _PRINTVF(-1, TRUE, "%s:%d| WARNING: " fmt, __FILE__, __LINE__, ## args)
92 _PRINTVF(-1, TRUE, "%s:%d| ERROR: " fmt, __FILE__, __LINE__, ## args)
96 #define DEBUG(x...) _PRINTVF(2, TRUE, "DEBUG: " x)