Lines Matching defs:fmt
198 #define __logfc(fc, l, fmt, ...) logfc((fc)->log.log, NULL, \ argument
200 #define __plog(p, l, fmt, ...) logfc((p)->log, (p)->prefix, \ argument
210 #define infof(fc, fmt, ...) __logfc(fc, 'i', fmt, ## __VA_ARGS__) argument
211 #define info_plog(p, fmt, ...) __plog(p, 'i', fmt, ## __VA_ARGS__) argument
212 #define infofc(p, fmt, ...) __plog((&(fc)->log), 'i', fmt, ## __VA_ARGS__) argument
222 #define warnf(fc, fmt, ...) __logfc(fc, 'w', fmt, ## __VA_ARGS__) argument
223 #define warn_plog(p, fmt, ...) __plog(p, 'w', fmt, ## __VA_ARGS__) argument
224 #define warnfc(fc, fmt, ...) __plog((&(fc)->log), 'w', fmt, ## __VA_ARGS__) argument
234 #define errorf(fc, fmt, ...) __logfc(fc, 'e', fmt, ## __VA_ARGS__) argument
235 #define error_plog(p, fmt, ...) __plog(p, 'e', fmt, ## __VA_ARGS__) argument
236 #define errorfc(fc, fmt, ...) __plog((&(fc)->log), 'e', fmt, ## __VA_ARGS__) argument
246 #define invalf(fc, fmt, ...) (errorf(fc, fmt, ## __VA_ARGS__), -EINVAL) argument
247 #define inval_plog(p, fmt, ...) (error_plog(p, fmt, ## __VA_ARGS__), -EINVAL) argument
248 #define invalfc(fc, fmt, ...) (errorfc(fc, fmt, ## __VA_ARGS__), -EINVAL) argument