Lines Matching refs:level
65 #define wpa_printf(level,fmt, args...) ESP_LOG_LEVEL_LOCAL(level, TAG, fmt, ##args) argument
66 #define wpa_dbg(ctx, level, fmt, args...) wpa_printf(level, fmt, ##args) argument
81 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len);
83 static inline void wpa_hexdump_ascii(int level, const char *title, const void *buf, size_t len) in wpa_hexdump_ascii() argument
85 wpa_hexdump(level, title, buf, len); in wpa_hexdump_ascii()
88 static inline void wpa_hexdump_ascii_key(int level, const char *title, const void *buf, size_t len) in wpa_hexdump_ascii_key() argument
90 wpa_hexdump(level, title, buf, len); in wpa_hexdump_ascii_key()
93 static inline void wpa_hexdump_buf(int level, const char *title, in wpa_hexdump_buf() argument
96 wpa_hexdump(level, title, wpabuf_head(buf), wpabuf_len(buf)); in wpa_hexdump_buf()
112 void wpa_hexdump_key(int level, const char *title, const u8 *buf, size_t len);
114 static inline void wpa_hexdump_buf_key(int level, const char *title, in wpa_hexdump_buf_key() argument
117 wpa_hexdump_key(level, title, wpabuf_head(buf), wpabuf_len(buf)); in wpa_hexdump_buf_key()
133 void wpa_hexdump_ascii(int level, const char *title, const void *buf,
150 void wpa_hexdump_ascii_key(int level, const char *title, const void *buf,
153 #define wpa_printf(level,fmt, args...) do {} while(0) argument
195 void wpa_msg_ctrl(void *ctx, int level, const char *fmt, ...)
198 typedef void (*wpa_msg_cb_func)(void *ctx, int level, const char *txt,