Searched refs:_usbi_log (Results 1 – 3 of 3) sorted by relevance
/external/libusb/libusb/ |
D | libusbi.h | 187 #define _usbi_log(ctx, level, ...) usbi_log(ctx, level, __FUNCTION__, __VA_ARGS__) macro 188 #define usbi_dbg(...) _usbi_log(NULL, LIBUSB_LOG_LEVEL_DEBUG, __VA_ARGS__) 190 #define _usbi_log(ctx, level, ...) do { (void)(ctx); } while(0) macro 194 #define usbi_info(ctx, ...) _usbi_log(ctx, LIBUSB_LOG_LEVEL_INFO, __VA_ARGS__) 195 #define usbi_warn(ctx, ...) _usbi_log(ctx, LIBUSB_LOG_LEVEL_WARNING, __VA_ARGS__) 196 #define usbi_err(ctx, ...) _usbi_log(ctx, LIBUSB_LOG_LEVEL_ERROR, __VA_ARGS__)
|
/external/libusb/include/libusb/ |
D | libusbi.h | 187 #define _usbi_log(ctx, level, ...) usbi_log(ctx, level, __FUNCTION__, __VA_ARGS__) macro 188 #define usbi_dbg(...) _usbi_log(NULL, LIBUSB_LOG_LEVEL_DEBUG, __VA_ARGS__) 190 #define _usbi_log(ctx, level, ...) do { (void)(ctx); } while(0) macro 194 #define usbi_info(ctx, ...) _usbi_log(ctx, LIBUSB_LOG_LEVEL_INFO, __VA_ARGS__) 195 #define usbi_warn(ctx, ...) _usbi_log(ctx, LIBUSB_LOG_LEVEL_WARNING, __VA_ARGS__) 196 #define usbi_err(ctx, ...) _usbi_log(ctx, LIBUSB_LOG_LEVEL_ERROR, __VA_ARGS__)
|
/external/libusb-compat/libusb/ |
D | core.c | 43 #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)
|