Lines Matching refs:severity
38 #define ABSL_LOG(severity) ABSL_LOG_INTERNAL_LOG_IMPL(_##severity) argument
39 #define ABSL_PLOG(severity) ABSL_LOG_INTERNAL_PLOG_IMPL(_##severity) argument
40 #define ABSL_DLOG(severity) ABSL_LOG_INTERNAL_DLOG_IMPL(_##severity) argument
45 #define ABSL_LOG_IF(severity, condition) \ argument
46 ABSL_LOG_INTERNAL_LOG_IF_IMPL(_##severity, condition)
47 #define ABSL_PLOG_IF(severity, condition) \ argument
48 ABSL_LOG_INTERNAL_PLOG_IF_IMPL(_##severity, condition)
49 #define ABSL_DLOG_IF(severity, condition) \ argument
50 ABSL_LOG_INTERNAL_DLOG_IF_IMPL(_##severity, condition)
52 #define ABSL_LOG_EVERY_N(severity, n) \ argument
53 ABSL_LOG_INTERNAL_LOG_EVERY_N_IMPL(_##severity, n)
54 #define ABSL_LOG_FIRST_N(severity, n) \ argument
55 ABSL_LOG_INTERNAL_LOG_FIRST_N_IMPL(_##severity, n)
56 #define ABSL_LOG_EVERY_POW_2(severity) \ argument
57 ABSL_LOG_INTERNAL_LOG_EVERY_POW_2_IMPL(_##severity)
58 #define ABSL_LOG_EVERY_N_SEC(severity, n_seconds) \ argument
59 ABSL_LOG_INTERNAL_LOG_EVERY_N_SEC_IMPL(_##severity, n_seconds)
61 #define ABSL_PLOG_EVERY_N(severity, n) \ argument
62 ABSL_LOG_INTERNAL_PLOG_EVERY_N_IMPL(_##severity, n)
63 #define ABSL_PLOG_FIRST_N(severity, n) \ argument
64 ABSL_LOG_INTERNAL_PLOG_FIRST_N_IMPL(_##severity, n)
65 #define ABSL_PLOG_EVERY_POW_2(severity) \ argument
66 ABSL_LOG_INTERNAL_PLOG_EVERY_POW_2_IMPL(_##severity)
67 #define ABSL_PLOG_EVERY_N_SEC(severity, n_seconds) \ argument
68 ABSL_LOG_INTERNAL_PLOG_EVERY_N_SEC_IMPL(_##severity, n_seconds)
70 #define ABSL_DLOG_EVERY_N(severity, n) \ argument
71 ABSL_LOG_INTERNAL_DLOG_EVERY_N_IMPL(_##severity, n)
72 #define ABSL_DLOG_FIRST_N(severity, n) \ argument
73 ABSL_LOG_INTERNAL_DLOG_FIRST_N_IMPL(_##severity, n)
74 #define ABSL_DLOG_EVERY_POW_2(severity) \ argument
75 ABSL_LOG_INTERNAL_DLOG_EVERY_POW_2_IMPL(_##severity)
76 #define ABSL_DLOG_EVERY_N_SEC(severity, n_seconds) \ argument
77 ABSL_LOG_INTERNAL_DLOG_EVERY_N_SEC_IMPL(_##severity, n_seconds)
88 #define ABSL_LOG_IF_EVERY_N(severity, condition, n) \ argument
89 ABSL_LOG_INTERNAL_LOG_IF_EVERY_N_IMPL(_##severity, condition, n)
90 #define ABSL_LOG_IF_FIRST_N(severity, condition, n) \ argument
91 ABSL_LOG_INTERNAL_LOG_IF_FIRST_N_IMPL(_##severity, condition, n)
92 #define ABSL_LOG_IF_EVERY_POW_2(severity, condition) \ argument
93 ABSL_LOG_INTERNAL_LOG_IF_EVERY_POW_2_IMPL(_##severity, condition)
94 #define ABSL_LOG_IF_EVERY_N_SEC(severity, condition, n_seconds) \ argument
95 ABSL_LOG_INTERNAL_LOG_IF_EVERY_N_SEC_IMPL(_##severity, condition, n_seconds)
97 #define ABSL_PLOG_IF_EVERY_N(severity, condition, n) \ argument
98 ABSL_LOG_INTERNAL_PLOG_IF_EVERY_N_IMPL(_##severity, condition, n)
99 #define ABSL_PLOG_IF_FIRST_N(severity, condition, n) \ argument
100 ABSL_LOG_INTERNAL_PLOG_IF_FIRST_N_IMPL(_##severity, condition, n)
101 #define ABSL_PLOG_IF_EVERY_POW_2(severity, condition) \ argument
102 ABSL_LOG_INTERNAL_PLOG_IF_EVERY_POW_2_IMPL(_##severity, condition)
103 #define ABSL_PLOG_IF_EVERY_N_SEC(severity, condition, n_seconds) \ argument
104 ABSL_LOG_INTERNAL_PLOG_IF_EVERY_N_SEC_IMPL(_##severity, condition, n_seconds)
106 #define ABSL_DLOG_IF_EVERY_N(severity, condition, n) \ argument
107 ABSL_LOG_INTERNAL_DLOG_IF_EVERY_N_IMPL(_##severity, condition, n)
108 #define ABSL_DLOG_IF_FIRST_N(severity, condition, n) \ argument
109 ABSL_LOG_INTERNAL_DLOG_IF_FIRST_N_IMPL(_##severity, condition, n)
110 #define ABSL_DLOG_IF_EVERY_POW_2(severity, condition) \ argument
111 ABSL_LOG_INTERNAL_DLOG_IF_EVERY_POW_2_IMPL(_##severity, condition)
112 #define ABSL_DLOG_IF_EVERY_N_SEC(severity, condition, n_seconds) \ argument
113 ABSL_LOG_INTERNAL_DLOG_IF_EVERY_N_SEC_IMPL(_##severity, condition, n_seconds)