Home | History | Annotate | Download | only in include

Lines Matching refs:priority

277 #define MPL_LOG(priority, tag, fmt, ...)		\
278 MPL_LOG_PRI(priority, tag, fmt, ##__VA_ARGS__)
282 * Log macro that allows you to specify a number for the priority.
286 #define MPL_LOG_PRI(priority, tag, fmt, ...) \
287 ALOG(priority, tag, fmt, ##__VA_ARGS__)
289 #define MPL_LOG_PRI(priority, tag, fmt, ...) \
290 pr_debug(MPL_##priority tag fmt, ##__VA_ARGS__)
292 #define MPL_LOG_PRI(priority, tag, fmt, ...) \
293 _MLPrintLog(MPL_##priority, tag, fmt, ##__VA_ARGS__)
302 #define MPL_LOG_PRI_VA(priority, tag, fmt, args) \
303 android_vprintLog(priority, NULL, tag, fmt, args)
307 #define MPL_LOG_PRI_VA(priority, tag, fmt, args) \
308 _MLPrintVaLog(priority, NULL, tag, fmt, args)
321 int _MLPrintLog(int priority, const char *tag, const char *fmt, ...);
322 int _MLPrintVaLog(int priority, const char *tag, const char *fmt, va_list args);