Searched refs:_usbi_log (Results 1 - 3 of 3) sorted by relevance

/external/libusb/libusb/
H A Dlibusbi.h119 #define _usbi_log(ctx, level, fmt...) usbi_log(ctx, level, __FUNCTION__, fmt) macro
121 #define _usbi_log(ctx, level, fmt...) macro
125 #define usbi_dbg(fmt...) _usbi_log(NULL, LOG_LEVEL_DEBUG, fmt)
130 #define usbi_info(ctx, fmt...) _usbi_log(ctx, LOG_LEVEL_INFO, fmt)
131 #define usbi_warn(ctx, fmt...) _usbi_log(ctx, LOG_LEVEL_WARNING, fmt)
132 #define usbi_err(ctx, fmt...) _usbi_log(ctx, LOG_LEVEL_ERROR, fmt)
/external/chromium_org/third_party/libusb/src/libusb/
H A Dlibusbi.h161 #define _usbi_log(ctx, level, ...) usbi_log(ctx, level, __FUNCTION__, __VA_ARGS__) macro
162 #define usbi_dbg(...) _usbi_log(NULL, LIBUSB_LOG_LEVEL_DEBUG, __VA_ARGS__)
164 #define _usbi_log(ctx, level, ...) do { (void)(ctx); } while(0) macro
168 #define usbi_info(ctx, ...) _usbi_log(ctx, LIBUSB_LOG_LEVEL_INFO, __VA_ARGS__)
169 #define usbi_warn(ctx, ...) _usbi_log(ctx, LIBUSB_LOG_LEVEL_WARNING, __VA_ARGS__)
170 #define usbi_err(ctx, ...) _usbi_log(ctx, LIBUSB_LOG_LEVEL_ERROR, __VA_ARGS__)
/external/libusb-compat/libusb/
H A Dcore.c43 #define _usbi_log(level, fmt...) usbi_log(level, __FUNCTION__, fmt) macro
45 #define _usbi_log(level, fmt...) macro
49 #define usbi_dbg(fmt...) _usbi_log(LOG_LEVEL_DEBUG, fmt)
54 #define usbi_info(fmt...) _usbi_log(LOG_LEVEL_INFO, fmt)
55 #define usbi_warn(fmt...) _usbi_log(LOG_LEVEL_WARNING, fmt)
56 #define usbi_err(fmt...) _usbi_log(LOG_LEVEL_ERROR, fmt)

Completed in 140 milliseconds