Lines Matching refs:hook
349 #define error(hook, templ, args...) \ argument
351 #define warning(hook, templ, args...) \ argument
353 #define notice(hook, templ, args...) \ argument
355 #define info(hook, templ, args...) \ argument
357 #define debug1(hook, templ, args...) \ argument
359 #define debug2(hook, templ, args...) \ argument
361 #define debug3(hook, templ, args...) \ argument
364 #define error(hook, templ, ...) \ argument
366 #define warning(hook, templ, ...) \ argument
368 #define notice(hook, templ, ...) \ argument
370 #define info(hook, templ, ...) \ argument
372 #define debug1(hook, templ, ...) \ argument
374 #define debug2(hook, templ, ...) \ argument
376 #define debug3(hook, templ, ...) \ argument
406 #define _vbi_log(hook, level, templ, args...) \
408 _vbi_log_hook *_h = hook; \
417 #define _vbi_vlog(hook, level, templ, ap) \
419 _vbi_log_hook *_h = hook; \
427 #define error(hook, templ, args...) \
428 _vbi_log (hook, VBI_LOG_ERROR, templ , ##args)
429 #define warning(hook, templ, args...) \
430 _vbi_log (hook, VBI_LOG_ERROR, templ , ##args)
431 #define notice(hook, templ, args...) \
432 _vbi_log (hook, VBI_LOG_NOTICE, templ , ##args)
433 #define info(hook, templ, args...) \
434 _vbi_log (hook, VBI_LOG_INFO, templ , ##args)
435 #define debug1(hook, templ, args...) \
436 _vbi_log (hook, VBI_LOG_DEBUG, templ , ##args)
437 #define debug2(hook, templ, args...) \
438 _vbi_log (hook, VBI_LOG_DEBUG2, templ , ##args)
439 #define debug3(hook, templ, args...) \
440 _vbi_log (hook, VBI_LOG_DEBUG3, templ , ##args)