Lines Matching refs:title
84 #define wpa_hexdump(level, title, buf, len) \ argument
85 wpa_debug_cond_run(wpa_debug_level_enabled(level), wpa_hexdump_impl(level, title, buf, len))
87 void wpa_hexdump_impl(int level, const char *title, const void *buf, size_t len);
89 static inline void wpa_hexdump_buf(int level, const char *title, const struct wpabuf *buf) in wpa_hexdump_buf() argument
91 wpa_hexdump(level, title, buf ? wpabuf_head(buf) : NULL, buf ? wpabuf_len(buf) : 0); in wpa_hexdump_buf()
107 #define wpa_hexdump_key(level, title, buf, len) \ argument
109 wpa_hexdump_key_impl(level, title, buf, len))
111 void wpa_hexdump_key_impl(int level, const char *title, const void *buf, size_t len);
113 static inline void wpa_hexdump_buf_key(int level, const char *title, const struct wpabuf *buf) in wpa_hexdump_buf_key() argument
115 wpa_hexdump_key(level, title, buf ? wpabuf_head(buf) : NULL, buf ? wpabuf_len(buf) : 0); in wpa_hexdump_buf_key()
131 #define wpa_hexdump_ascii(level, title, buf, len) \ argument
133 wpa_hexdump_ascii_impl(level, title, buf, len))
135 void wpa_hexdump_ascii_impl(int level, const char *title, const void *buf, size_t len);
151 #define wpa_hexdump_ascii_key(level, title, buf, len) \ argument
153 wpa_hexdump_ascii_key_impl(level, title, buf, len));
155 void wpa_hexdump_ascii_key_impl(int level, const char *title, const void *buf, size_t len);