/hostap-latest/src/utils/ |
D | wpa_debug_zephyr.c | 26 void wpa_printf_impl(int level, const char *fmt, ...) in wpa_printf_impl() argument 35 va_start(ap, fmt); in wpa_printf_impl() 36 vsnprintf(buffer, sizeof(buffer), fmt, ap); in wpa_printf_impl() 177 void wpa_msg_impl(void *ctx, int level, const char *fmt, ...) in wpa_msg_impl() argument 185 va_start(ap, fmt); in wpa_msg_impl() 186 buflen = vsnprintf(NULL, 0, fmt, ap) + 1; in wpa_msg_impl() 194 va_start(ap, fmt); in wpa_msg_impl() 206 len = vsnprintf(buf, buflen, fmt, ap); in wpa_msg_impl() 214 void wpa_msg_ctrl_impl(void *ctx, int level, const char *fmt, ...) in wpa_msg_ctrl_impl() argument 224 va_start(ap, fmt); in wpa_msg_ctrl_impl() [all …]
|
D | wpa_debug.c | 209 void wpa_printf(int level, const char *fmt, ...) in wpa_printf() argument 215 va_start(ap, fmt); in wpa_printf() 217 ANDROID_LOG_NAME, fmt, ap); in wpa_printf() 222 va_start(ap, fmt); in wpa_printf() 223 vsyslog(syslog_priority(level), fmt, ap); in wpa_printf() 230 va_start(ap, fmt); in wpa_printf() 231 vfprintf(out_file, fmt, ap); in wpa_printf() 237 va_start(ap, fmt); in wpa_printf() 238 vprintf(fmt, ap); in wpa_printf() 247 va_start(ap, fmt); in wpa_printf() [all …]
|
D | wpa_debug_zephyr.h | 66 #define wpa_printf(level, fmt, ...) \ argument 68 wpa_printf_impl(level, fmt, ##__VA_ARGS__)) 70 void wpa_printf_impl(int level, const char *fmt, ...) PRINTF_FORMAT(2, 3); 194 #define wpa_msg(ctx, level, fmt, ...) \ argument 196 wpa_msg_impl(ctx, level, fmt, ##__VA_ARGS__)) 198 void wpa_msg_impl(void *ctx, int level, const char *fmt, ...) PRINTF_FORMAT(3, 4); 213 #define wpa_msg_ctrl(ctx, level, fmt, ...) \ argument 215 wpa_msg_ctrl_impl(ctx, level, fmt, ##__VA_ARGS__)) 217 void wpa_msg_ctrl_impl(void *ctx, int level, const char *fmt, ...) PRINTF_FORMAT(3, 4); 233 #define wpa_msg_global(ctx, level, fmt, ...) \ argument [all …]
|
D | wpa_debug.h | 74 void wpa_printf(int level, const char *fmt, ...) 187 void wpa_msg(void *ctx, int level, const char *fmt, ...) PRINTF_FORMAT(3, 4); 201 void wpa_msg_ctrl(void *ctx, int level, const char *fmt, ...) 217 void wpa_msg_global(void *ctx, int level, const char *fmt, ...) 232 void wpa_msg_global_ctrl(void *ctx, int level, const char *fmt, ...) 246 void wpa_msg_no_global(void *ctx, int level, const char *fmt, ...) 260 void wpa_msg_global_only(void *ctx, int level, const char *fmt, ...) 289 const char *fmt, ...) PRINTF_FORMAT(5, 6);
|
D | wpabuf.c | 298 void wpabuf_printf(struct wpabuf *buf, char *fmt, ...) in wpabuf_printf() argument 304 va_start(ap, fmt); in wpabuf_printf() 305 res = vsnprintf(tmp, buf->size - buf->used, fmt, ap); in wpabuf_printf()
|
D | xml_libxml2.c | 31 static void add_str(void *ctx_ptr, const char *fmt, ...) in add_str() argument 43 va_start(ap, fmt); in add_str() 44 len = vsnprintf(str->buf + str->len, MAX_STR, fmt, ap); in add_str()
|
D | common.c | 272 int wpa_scnprintf(char *buf, size_t size, const char *fmt, ...) in wpa_scnprintf() argument 280 va_start(ap, fmt); in wpa_scnprintf() 281 ret = vsnprintf(buf, size, fmt, ap); in wpa_scnprintf()
|
D | wpabuf.h | 39 void wpabuf_printf(struct wpabuf *buf, char *fmt, ...) PRINTF_FORMAT(2, 3);
|
/hostap-latest/wpa_supplicant/ |
D | wpa_cli_zephyr.c | 419 int zephyr_wpa_cli_cmd_v(const char *fmt, ...) in zephyr_wpa_cli_cmd_v() argument 426 va_start(cmd_args, fmt); in zephyr_wpa_cli_cmd_v() 427 vsnprintf(cmd, sizeof(cmd), fmt, cmd_args); in zephyr_wpa_cli_cmd_v() 505 int zephyr_wpa_cli_global_cmd_v(const char *fmt, ...) in zephyr_wpa_cli_global_cmd_v() argument 512 va_start(cmd_args, fmt); in zephyr_wpa_cli_global_cmd_v() 513 vsnprintf(cmd, sizeof(cmd), fmt, cmd_args); in zephyr_wpa_cli_global_cmd_v()
|
D | wpa_cli_zephyr.h | 33 int zephyr_wpa_cli_cmd_v(const char *fmt, ...); 44 int zephyr_wpa_cli_global_cmd_v(const char *fmt, ...);
|
/hostap-latest/hs20/server/ |
D | hs20_spp_server.c | 33 void debug_print(struct hs20_svc *ctx, int print, const char *fmt, ...) in debug_print() argument 41 va_start(ap, fmt); in debug_print() 42 vfprintf(ctx->debug_log, fmt, ap); in debug_print()
|
D | spp_server.h | 26 void debug_print(struct hs20_svc *ctx, int print, const char *fmt, ...)
|
/hostap-latest/hs20/client/ |
D | osu_client.h | 60 void write_result(struct hs20_osu_client *ctx, const char *fmt, ...) 62 void write_summary(struct hs20_osu_client *ctx, const char *fmt, ...)
|
D | osu_client.c | 31 void write_result(struct hs20_osu_client *ctx, const char *fmt, ...) in write_result() argument 37 va_start(ap, fmt); in write_result() 38 vsnprintf(buf, sizeof(buf), fmt, ap); in write_result() 49 va_start(ap, fmt); in write_result() 50 vfprintf(f, fmt, ap); in write_result() 57 void write_summary(struct hs20_osu_client *ctx, const char *fmt, ...) in write_summary() argument 69 va_start(ap, fmt); in write_summary() 70 vfprintf(f, fmt, ap); in write_summary()
|
/hostap-latest/src/tls/ |
D | tlsv1_server.c | 24 void tlsv1_server_log(struct tlsv1_server *conn, const char *fmt, ...) in tlsv1_server_log() argument 30 va_start(ap, fmt); in tlsv1_server_log() 31 buflen = vsnprintf(NULL, 0, fmt, ap) + 1; in tlsv1_server_log() 37 va_start(ap, fmt); in tlsv1_server_log() 38 vsnprintf(buf, buflen, fmt, ap); in tlsv1_server_log()
|
D | tlsv1_server_i.h | 74 void tlsv1_server_log(struct tlsv1_server *conn, const char *fmt, ...)
|
/hostap-latest/hostapd/ |
D | hostapd_cli_zephyr.c | 230 int zephyr_hostapd_cli_cmd_v(const char *fmt, ...) in zephyr_hostapd_cli_cmd_v() argument 237 va_start(cmd_args, fmt); in zephyr_hostapd_cli_cmd_v() 238 vsnprintf(cmd, sizeof(cmd), fmt, cmd_args); in zephyr_hostapd_cli_cmd_v()
|
D | hostapd_cli_zephyr.h | 21 int zephyr_hostapd_cli_cmd_v(const char *fmt, ...);
|
/hostap-latest/wlantest/ |
D | wlantest.c | 283 void add_note(struct wlantest *wt, int level, const char *fmt, ...) in add_note() argument 295 va_start(ap, fmt); in add_note() 296 wlen = vsnprintf(wt->notes[wt->num_notes], len, fmt, ap); in add_note()
|
/hostap-latest/src/eap_server/ |
D | eap_i.h | 206 void eap_log_msg(struct eap_sm *sm, const char *fmt, ...)
|
D | eap_server.c | 187 void eap_log_msg(struct eap_sm *sm, const char *fmt, ...) in eap_log_msg() argument 196 va_start(ap, fmt); in eap_log_msg() 197 buflen = vsnprintf(NULL, 0, fmt, ap) + 1; in eap_log_msg() 203 va_start(ap, fmt); in eap_log_msg() 204 vsnprintf(buf, buflen, fmt, ap); in eap_log_msg()
|
/hostap-latest/src/p2p/ |
D | p2p_i.h | 905 void p2p_dbg(struct p2p_data *p2p, const char *fmt, ...) 907 void p2p_info(struct p2p_data *p2p, const char *fmt, ...) 909 void p2p_err(struct p2p_data *p2p, const char *fmt, ...)
|
/hostap-latest/src/eapol_auth/ |
D | eapol_auth_sm.c | 62 const char *fmt, ...) in eapol_auth_vlogger() argument 71 maxlen = os_strlen(fmt) + 100; in eapol_auth_vlogger() 76 va_start(ap, fmt); in eapol_auth_vlogger() 77 vsnprintf(format, maxlen, fmt, ap); in eapol_auth_vlogger()
|
/hostap-latest/src/radius/ |
D | radius_server.c | 284 void srv_log(struct radius_session *sess, const char *fmt, ...) 287 void srv_log(struct radius_session *sess, const char *fmt, ...) in srv_log() argument 293 va_start(ap, fmt); in srv_log() 294 buflen = vsnprintf(NULL, 0, fmt, ap) + 1; in srv_log() 300 va_start(ap, fmt); in srv_log() 301 vsnprintf(buf, buflen, fmt, ap); in srv_log()
|
/hostap-latest/src/ap/ |
D | wpa_auth_i.h | 315 logger_level level, const char *fmt, ...)
|