Home
last modified time | relevance | path

Searched refs:title (Results 1 – 12 of 12) sorted by relevance

/hal_espressif-latest/components/wpa_supplicant/include/utils/
Dwpa_debug.h81 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()
[all …]
/hal_espressif-latest/components/wpa_supplicant/src/utils/
Dwpa_debug.c82 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len) in wpa_hexdump() argument
91 wpa_printf(level, "%s - hexdump(len=%lu):", title, (unsigned long) len); in wpa_hexdump()
109 void wpa_hexdump_key(int level, const char *title, const u8 *buf, size_t len) in wpa_hexdump_key() argument
111 wpa_hexdump(level, title, buf, len); in wpa_hexdump_key()
/hal_espressif-latest/tools/esptool_py/esptool/
Dcmds.py774 title = "{} image header".format(args.chip.upper())
775 print(title)
776 print("=" * len(title))
815 title = "{} extended image header".format(args.chip.upper())
816 print(title)
817 print("=" * len(title))
855 title = "Segments information"
856 print(title)
857 print("=" * len(title))
885 title = f"{args.chip.upper()} image footer"
[all …]
/hal_espressif-latest/components/wpa_supplicant/src/tls/
Dasn1.c276 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()
Dasn1.h63 void asn1_print_hdr(const struct asn1_hdr *hdr, const char *title);
64 void asn1_unexpected(const struct asn1_hdr *hdr, const char *title);
/hal_espressif-latest/components/wpa_supplicant/src/common/
Dwpa_common.c1043 char *title = "PMK Name"; in rsn_pmkid_suite_b() local
1048 addr[0] = (u8 *) title; in rsn_pmkid_suite_b()
1075 char *title = "PMK Name"; in rsn_pmkid_suite_b_192() local
1080 addr[0] = (u8 *) title; in rsn_pmkid_suite_b_192()
1228 char *title = "PMK Name"; in rsn_pmkid() local
1233 addr[0] = (u8 *) title; in rsn_pmkid()
Dsae.c560 static void debug_print_bignum(const char *title, const struct crypto_bignum *a, in debug_print_bignum() argument
567 wpa_hexdump_key(MSG_DEBUG, title, bin, prime_len); in debug_print_bignum()
569 wpa_printf(MSG_DEBUG, "Could not print bignum (%s)", title); in debug_print_bignum()
Ddpp.c78 static void dpp_debug_print_key(const char *title, struct crypto_key *key) in dpp_debug_print_key() argument
80 crypto_debug_print_ec_key(title, key); in dpp_debug_print_key()
83 void dpp_debug_print_point(const char *title, struct crypto_ec *e, in dpp_debug_print_point() argument
93 wpa_printf(MSG_DEBUG, "%s (%s,%s)", title, x, y); in dpp_debug_print_point()
/hal_espressif-latest/components/wpa_supplicant/src/crypto/
Dcrypto.h1066 void crypto_debug_print_ec_key(const char *title, struct crypto_key *key);
/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/crypto/
Dcrypto_mbedtls-ec.c487 void crypto_debug_print_point(const char *title, struct crypto_ec *e, in crypto_debug_print_point() argument
853 void crypto_debug_print_ec_key(const char *title, struct crypto_key *key) in crypto_debug_print_ec_key() argument
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/
Dbase_operations.py295 for category in sorted(set(e.category for e in efuses), key=lambda c: c.title()):
/hal_espressif-latest/components/bt/host/bluedroid/bta/jv/
Dbta_jv_act.c102 static inline void logu(const char *title, const uint8_t *p_uuid) in logu() argument
106 APPL_TRACE_DEBUG("%s: %s", title, uuids); in logu()