Lines Matching refs:format
35 #define DLOG(method, format, ...) \ argument
36 display::DebugHandler::Get()->method(__CLASS__ "::%s: " format, __FUNCTION__, ##__VA_ARGS__)
38 #define DLOG_IF(tag, method, format, ...) \ argument
40 DLOG(method, format, ##__VA_ARGS__); \
43 #define DLOGE_IF(tag, format, ...) DLOG_IF(tag, Error, format, ##__VA_ARGS__) argument
44 #define DLOGW_IF(tag, format, ...) DLOG_IF(tag, Warning, format, ##__VA_ARGS__) argument
45 #define DLOGI_IF(tag, format, ...) DLOG_IF(tag, Info, format, ##__VA_ARGS__) argument
46 #define DLOGD_IF(tag, format, ...) DLOG_IF(tag, Debug, format, ##__VA_ARGS__) argument
47 #define DLOGV_IF(tag, format, ...) DLOG_IF(tag, Verbose, format, ##__VA_ARGS__) argument
49 #define DLOGE(format, ...) DLOG(Error, format, ##__VA_ARGS__) argument
50 #define DLOGW(format, ...) DLOG(Warning, format, ##__VA_ARGS__) argument
51 #define DLOGI(format, ...) DLOG(Info, format, ##__VA_ARGS__) argument
52 #define DLOGD(format, ...) DLOG(Debug, format, ##__VA_ARGS__) argument
53 #define DLOGV(format, ...) DLOG(Verbose, format, ##__VA_ARGS__) argument
65 virtual void Error(const char *format, ...) = 0;
66 virtual void Warning(const char *format, ...) = 0;
67 virtual void Info(const char *format, ...) = 0;
68 virtual void Debug(const char *format, ...) = 0;
69 virtual void Verbose(const char *format, ...) = 0;