/hostap-latest/src/utils/ |
D | wpa_debug_zephyr.h | 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() [all …]
|
D | browser.c | 26 char *title; member 50 ctx->title ? ctx->title : in browser_update_title() 56 ctx->title ? ctx->title : "Hotspot 2.0 client"); in browser_update_title() 186 const char *title; in view_cb_notify_title() local 188 title = webkit_web_view_get_title(ctx->view); in view_cb_notify_title() 189 wpa_printf(MSG_DEBUG, "BROWSER:%s title=%s", __func__, title); in view_cb_notify_title() 190 os_free(ctx->title); in view_cb_notify_title() 191 ctx->title = os_strdup(title); in view_cb_notify_title() 264 static void view_cb_hovering_over_link(WebKitWebView *view, gchar *title, in view_cb_hovering_over_link() argument 267 wpa_printf(MSG_DEBUG, "BROWSER:%s title=%s uri=%s", __func__, title, in view_cb_hovering_over_link() [all …]
|
D | trace.h | 28 #define wpa_trace_dump(title, ptr) \ argument 29 wpa_trace_dump_func((title), (ptr)->btrace, (ptr)->btrace_num) 30 void wpa_trace_dump_func(const char *title, void **btrace, int btrace_num); 33 void wpa_trace_show(const char *title); 49 #define wpa_trace_dump(title, ptr) do { } while (0) argument 51 #define wpa_trace_show(title) do { } while (0) argument 61 void wpa_trace_dump_funcname(const char *title, void *pc); 65 #define wpa_trace_dump_funcname(title, pc) do { } while (0) argument
|
D | wpa_debug.c | 258 static void _wpa_hexdump(int level, const char *title, const u8 *buf, in _wpa_hexdump() argument 267 level, title, (unsigned long) len); in _wpa_hexdump() 315 title, (long unsigned int) len, display, in _wpa_hexdump() 348 title, (unsigned long) len, display); in _wpa_hexdump() 358 title, (unsigned long) len); in _wpa_hexdump() 371 printf("%s - hexdump(len=%lu):", title, (unsigned long) len); in _wpa_hexdump() 385 void wpa_hexdump(int level, const char *title, const void *buf, size_t len) in wpa_hexdump() argument 387 _wpa_hexdump(level, title, buf, len, 1, 0); in wpa_hexdump() 391 void wpa_hexdump_key(int level, const char *title, const void *buf, size_t len) in wpa_hexdump_key() argument 393 _wpa_hexdump(level, title, buf, len, wpa_debug_show_keys, 0); in wpa_hexdump_key() [all …]
|
D | wpa_debug.h | 88 void wpa_hexdump(int level, const char *title, const void *buf, size_t len); 90 static inline void wpa_hexdump_buf(int level, const char *title, in wpa_hexdump_buf() argument 93 wpa_hexdump(level, title, buf ? wpabuf_head(buf) : NULL, in wpa_hexdump_buf() 110 void wpa_hexdump_key(int level, const char *title, const void *buf, size_t len); 112 static inline void wpa_hexdump_buf_key(int level, const char *title, in wpa_hexdump_buf_key() argument 115 wpa_hexdump_key(level, title, buf ? wpabuf_head(buf) : NULL, in wpa_hexdump_buf_key() 132 void wpa_hexdump_ascii(int level, const char *title, const void *buf, 149 void wpa_hexdump_ascii_key(int level, const char *title, const void *buf,
|
D | wpa_debug_zephyr.c | 67 static void _wpa_hexdump(int level, const char *title, const u8 *buf, size_t len, int show) in _wpa_hexdump() argument 93 wpa_printf(level, "%s - hexdump(len=%lu):%s", title, (unsigned long)len, content); in _wpa_hexdump() 97 void wpa_hexdump_impl(int level, const char *title, const void *buf, size_t len) in wpa_hexdump_impl() argument 99 _wpa_hexdump(level, title, buf, len, 1); in wpa_hexdump_impl() 102 void wpa_hexdump_key_impl(int level, const char *title, const void *buf, size_t len) in wpa_hexdump_key_impl() argument 104 _wpa_hexdump(level, title, buf, len, wpa_debug_show_keys); in wpa_hexdump_key_impl() 107 static void _wpa_hexdump_ascii(int level, const char *title, const void *buf, size_t len, int show) in _wpa_hexdump_ascii() argument 123 wpa_printf(level, "%s - hexdump_ascii(len=%lu):%s", title, (unsigned long)len, content); in _wpa_hexdump_ascii() 149 void wpa_hexdump_ascii_impl(int level, const char *title, const void *buf, size_t len) in wpa_hexdump_ascii_impl() argument 151 _wpa_hexdump_ascii(level, title, buf, len, 1); in wpa_hexdump_ascii_impl() [all …]
|
D | trace.c | 281 void wpa_trace_dump_funcname(const char *title, void *pc) in wpa_trace_dump_funcname() argument 283 wpa_printf(MSG_INFO, "WPA_TRACE: %s: %p", title, pc); in wpa_trace_dump_funcname() 343 void wpa_trace_dump_func(const char *title, void **btrace, int btrace_num) in wpa_trace_dump_func() argument 350 wpa_printf(MSG_INFO, "WPA_TRACE: %s - START", title); in wpa_trace_dump_func() 375 wpa_printf(MSG_INFO, "WPA_TRACE: %s - END", title); in wpa_trace_dump_func() 379 void wpa_trace_show(const char *title) in wpa_trace_show() argument 385 wpa_trace_dump(title, &info); in wpa_trace_show()
|
D | http_curl.c | 94 static void debug_dump(struct http_ctx *ctx, const char *title, in debug_dump() argument 103 wpa_hexdump_ascii(MSG_MSGDUMP, title, buf, len); in debug_dump() 120 wpa_printf(MSG_MSGDUMP, "%s[%s]", title, txt); in debug_dump() 180 static void debug_dump_cert(const char *title, X509 *cert) in debug_dump_cert() argument 197 wpa_printf(MSG_MSGDUMP, "%s:\n%s", title, txt); in debug_dump_cert() 679 static void i2r_LogotypeData(LogotypeData *data, const char *title, BIO *out, in i2r_LogotypeData() argument 684 BIO_printf(out, "%*s%s - LogotypeData\n", indent, "", title); in i2r_LogotypeData() 698 static void i2r_LogotypeReference(LogotypeReference *ref, const char *title, in i2r_LogotypeReference() argument 703 BIO_printf(out, "%*s%s - LogotypeReference\n", indent, "", title); in i2r_LogotypeReference() 729 static void i2r_LogotypeInfo(LogotypeInfo *info, const char *title, BIO *out, in i2r_LogotypeInfo() argument [all …]
|
/hostap-latest/wpa_supplicant/doc/docbook/ |
D | wpa_passphrase.sgml | 25 <title>Overview</title> 34 <title>Options</title> 54 <title>See Also</title> 68 <title>Legal</title>
|
D | wpa_gui.sgml | 30 <title>Overview</title> 42 <title>Command Arguments</title> 84 <title>See Also</title> 97 <title>Legal</title>
|
D | wpa_priv.sgml | 29 <title>Overview</title> 53 <title>Example configuration</title> 90 <title>Command Arguments</title> 134 <title>See Also</title> 143 <title>Legal</title>
|
D | wpa_background.sgml | 17 <title>WPA</title> 73 <title>IEEE 802.11i / WPA2</title> 86 <title>See Also</title> 96 <title>Legal</title>
|
D | wpa_supplicant.sgml | 29 <title>Overview</title> 138 <title>Supported Features</title> 245 <title>Available Drivers</title> 314 <title>Command Line Options</title> 528 <title>Examples</title> 571 <title>OS Requirements</title> 597 <title>Supported Drivers</title> 651 <title>Architecture</title> <para>The 683 <title>Quick Start</title> 722 <title>Interface to pcmcia-cs/cardmrg</title> [all …]
|
D | wpa_cli.sgml | 33 <title>Overview</title> 68 <title>Interactive authentication parameters request</title> 110 <title>Command Arguments</title> 194 <title>Commands</title> 342 <title>See Also</title> 351 <title>Legal</title>
|
D | eapol_test.sgml | 45 <title>Overview</title> 83 <title>Command Arguments</title> 191 <title>See Also</title> 200 <title>Legal</title>
|
D | wpa_supplicant.conf.sgml | 16 <title>Overview</title> 43 <title>Quick Examples</title> 204 <title>Certificates</title> 231 <title>See Also</title>
|
/hostap-latest/wpadebug/src/w1/fi/wpadebug/ |
D | CommandListActivity.java | 32 String title; field in CmdList 37 title = _title; in CmdList() 44 return title; in toString() 57 String title = in.next(); in read_commands() local 59 list.add(new CmdList(title, cmd)); in read_commands()
|
D | WpaCommandListActivity.java | 39 String title = in.next(); in read_commands() local 41 list.add(new CmdList(title, cmd)); in read_commands()
|
D | WpaNfcActivity.java | 41 private void show_alert(String title, String message) in show_alert() argument 44 alert.setTitle(title); in show_alert()
|
/hostap-latest/wpa_supplicant/wpa_gui-qt4/ |
D | peers.cpp | 124 QString title; in ItemType() local 127 title = tr("Associated station"); in ItemType() 130 title = tr("AP"); in ItemType() 133 title = tr("WPS AP"); in ItemType() 136 title = tr("WPS PIN needed"); in ItemType() 139 title = tr("P2P Device"); in ItemType() 142 title = tr("P2P Device (group client)"); in ItemType() 145 title = tr("P2P Group"); in ItemType() 148 title = tr("P2P Persistent Group (GO)"); in ItemType() 151 title = tr("P2P Persistent Group (client)"); in ItemType() [all …]
|
D | wpagui.ui | 47 <attribute name="title" > 211 <attribute name="title" > 293 <attribute name="title" > 389 <property name="title" > 400 <property name="title" > 412 <property name="title" >
|
/hostap-latest/src/common/ |
D | wpa_common.c | 2326 const char *title; in wpa_derive_pmk_r1_name() local 2344 title = "FT: PMKR1Name (using SHA512)"; in wpa_derive_pmk_r1_name() 2350 title = "FT: PMKR1Name (using SHA384)"; in wpa_derive_pmk_r1_name() 2355 title = "FT: PMKR1Name (using SHA256)"; in wpa_derive_pmk_r1_name() 2365 wpa_hexdump(MSG_DEBUG, title, pmk_r1_name, WPA_PMK_NAME_LEN); in wpa_derive_pmk_r1_name() 2607 char *title = "PMK Name"; in rsn_pmkid() local 2612 addr[0] = (u8 *) title; in rsn_pmkid() 2650 char *title = "PMK Name"; in rsn_pmkid_suite_b() local 2655 addr[0] = (u8 *) title; in rsn_pmkid_suite_b() 2683 char *title = "PMK Name"; in rsn_pmkid_suite_b_192() local [all …]
|
/hostap-latest/wpa_supplicant/ |
D | nfc_pw_token.c | 18 static void print_bin(const char *title, const struct wpabuf *buf) in print_bin() argument 26 printf("%s=", title); in print_bin()
|
/hostap-latest/src/tls/ |
D | asn1.c | 276 void asn1_print_hdr(const struct asn1_hdr *hdr, const char *title) in asn1_print_hdr() argument 279 title, hdr->class, hdr->constructed, hdr->tag); in asn1_print_hdr() 283 void asn1_unexpected(const struct asn1_hdr *hdr, const char *title) in asn1_unexpected() argument 286 title, hdr->class, hdr->constructed, hdr->tag); in asn1_unexpected()
|
/hostap-latest/hs20/server/ |
D | hs20_spp_server.c | 49 void debug_dump_node(struct hs20_svc *ctx, const char *title, xml_node_t *node) in debug_dump_node() argument 60 fprintf(ctx->debug_log, "%s: '%s'\n", title, str); in debug_dump_node()
|