/hal_espressif-latest/components/wpa_supplicant/src/tls/ |
D | tlsv1_server.c | 24 void tlsv1_server_log(struct tlsv1_server *conn, const char *fmt, ...) in tlsv1_server_log() 49 void tlsv1_server_alert(struct tlsv1_server *conn, u8 level, u8 description) in tlsv1_server_alert() 56 int tlsv1_server_derive_keys(struct tlsv1_server *conn, in tlsv1_server_derive_keys() 132 u8 * tlsv1_server_handshake(struct tlsv1_server *conn, in tlsv1_server_handshake() 227 int tlsv1_server_encrypt(struct tlsv1_server *conn, in tlsv1_server_encrypt() 260 int tlsv1_server_decrypt(struct tlsv1_server *conn, in tlsv1_server_decrypt() 379 struct tlsv1_server *conn; in tlsv1_server_init() local 418 static void tlsv1_server_clear_data(struct tlsv1_server *conn) in tlsv1_server_clear_data() 443 void tlsv1_server_deinit(struct tlsv1_server *conn) in tlsv1_server_deinit() 455 int tlsv1_server_established(struct tlsv1_server *conn) in tlsv1_server_established() [all …]
|
D | tlsv1_client.c | 25 void tls_alert(struct tlsv1_client *conn, u8 level, u8 description) in tls_alert() 32 void tlsv1_client_free_dh(struct tlsv1_client *conn) in tlsv1_client_free_dh() 41 u16 tls_client_highest_ver(struct tlsv1_client *conn) in tls_client_highest_ver() 64 int tls_derive_pre_master_secret(struct tlsv1_client *conn, in tls_derive_pre_master_secret() 75 int tls_derive_keys(struct tlsv1_client *conn, in tls_derive_keys() 163 u8 * tlsv1_client_handshake(struct tlsv1_client *conn, in tlsv1_client_handshake() 297 int tlsv1_client_encrypt(struct tlsv1_client *conn, in tlsv1_client_encrypt() 330 struct wpabuf * tlsv1_client_decrypt(struct tlsv1_client *conn, in tlsv1_client_decrypt() 467 struct tlsv1_client *conn; in tlsv1_client_init() local 520 void tlsv1_client_deinit(struct tlsv1_client *conn) in tlsv1_client_deinit() [all …]
|
D | tlsv1_client_write.c | 24 static size_t tls_client_cert_chain_der_len(struct tlsv1_client *conn) in tls_client_cert_chain_der_len() 45 u8 * tls_send_client_hello(struct tlsv1_client *conn, size_t *out_len) in tls_send_client_hello() 262 static int tls_write_client_certificate(struct tlsv1_client *conn, in tls_write_client_certificate() 346 static int tlsv1_key_x_dh(struct tlsv1_client *conn, u8 **pos, u8 *end) in tlsv1_key_x_dh() 469 static int tlsv1_key_x_rsa(struct tlsv1_client *conn, u8 **pos, u8 *end) in tlsv1_key_x_rsa() 516 static int tls_write_client_key_exchange(struct tlsv1_client *conn, in tls_write_client_key_exchange() 574 static int tls_write_client_certificate_verify(struct tlsv1_client *conn, in tls_write_client_certificate_verify() 746 static int tls_write_client_change_cipher_spec(struct tlsv1_client *conn, in tls_write_client_change_cipher_spec() 779 static int tls_write_client_finished(struct tlsv1_client *conn, in tls_write_client_finished() 870 static u8 * tls_send_client_key_exchange(struct tlsv1_client *conn, in tls_send_client_key_exchange() [all …]
|
D | tlsv1_server_write.c | 24 static size_t tls_server_cert_chain_der_len(struct tlsv1_server *conn) in tls_server_cert_chain_der_len() 42 static int tls_write_server_hello(struct tlsv1_server *conn, in tls_write_server_hello() 189 static int tls_write_server_certificate(struct tlsv1_server *conn, in tls_write_server_certificate() 281 static int tls_write_server_certificate_status(struct tlsv1_server *conn, in tls_write_server_certificate_status() 368 static int tls_write_server_key_exchange(struct tlsv1_server *conn, in tls_write_server_key_exchange() 695 static int tls_write_server_certificate_request(struct tlsv1_server *conn, in tls_write_server_certificate_request() 761 static int tls_write_server_hello_done(struct tlsv1_server *conn, in tls_write_server_hello_done() 798 static int tls_write_server_change_cipher_spec(struct tlsv1_server *conn, in tls_write_server_change_cipher_spec() 831 static int tls_write_server_finished(struct tlsv1_server *conn, in tls_write_server_finished() 930 static u8 * tls_send_server_hello(struct tlsv1_server *conn, size_t *out_len) in tls_send_server_hello() [all …]
|
D | tlsv1_client_read.c | 30 static int tls_version_disabled(struct tlsv1_client *conn, u16 ver) in tls_version_disabled() 41 static int tls_process_server_hello_extensions(struct tlsv1_client *conn, in tls_process_server_hello_extensions() 81 static int tls_process_server_hello(struct tlsv1_client *conn, u8 ct, in tls_process_server_hello() 282 static void tls_peer_cert_event(struct tlsv1_client *conn, int depth, in tls_peer_cert_event() 331 static void tls_cert_chain_failure_event(struct tlsv1_client *conn, int depth, in tls_cert_chain_failure_event() 359 static int tls_process_certificate(struct tlsv1_client *conn, u8 ct, in tls_process_certificate() 669 static int tlsv1_process_diffie_hellman(struct tlsv1_client *conn, in tlsv1_process_diffie_hellman() 804 tls_process_certificate_status_ocsp_response(struct tlsv1_client *conn, in tls_process_certificate_status_ocsp_response() 828 static int tls_process_certificate_status(struct tlsv1_client *conn, u8 ct, in tls_process_certificate_status() 1026 static int tls_process_server_key_exchange(struct tlsv1_client *conn, u8 ct, in tls_process_server_key_exchange() [all …]
|
D | tlsv1_server_read.c | 30 static int testing_cipher_suite_filter(struct tlsv1_server *conn, u16 suite) in testing_cipher_suite_filter() 49 static void tls_process_status_request_item(struct tlsv1_server *conn, in tls_process_status_request_item() 90 static void tls_process_status_request_v2(struct tlsv1_server *conn, in tls_process_status_request_v2() 121 static int tls_process_client_hello(struct tlsv1_server *conn, u8 ct, in tls_process_client_hello() 396 static int tls_process_certificate(struct tlsv1_server *conn, u8 ct, in tls_process_certificate() 599 struct tlsv1_server *conn, const u8 *pos, const u8 *end) in tls_process_client_key_exchange_rsa() 702 struct tlsv1_server *conn, const u8 *pos, const u8 *end) in tls_process_client_key_exchange_dh() 807 static int tls_process_client_key_exchange(struct tlsv1_server *conn, u8 ct, in tls_process_client_key_exchange() 884 static int tls_process_certificate_verify(struct tlsv1_server *conn, u8 ct, in tls_process_certificate_verify() 1045 static int tls_process_change_cipher_spec(struct tlsv1_server *conn, in tls_process_change_cipher_spec() [all …]
|
D | tlsv1_client_ocsp.c | 110 static int tls_process_ocsp_single_response(struct tlsv1_client *conn, in tls_process_ocsp_single_response() 311 tls_process_ocsp_responses(struct tlsv1_client *conn, in tls_process_ocsp_responses() 344 tls_process_basic_ocsp_response(struct tlsv1_client *conn, in tls_process_basic_ocsp_response() 648 enum tls_ocsp_result tls_process_ocsp_response(struct tlsv1_client *conn, in tls_process_ocsp_response()
|
/hal_espressif-latest/components/wpa_supplicant/src/crypto/ |
D | tls_internal.c | 95 struct tls_connection *conn; in tls_connection_init() local 130 void tls_connection_set_test_flags(struct tls_connection *conn, u32 flags) in tls_connection_set_test_flags() 139 void tls_connection_set_log_cb(struct tls_connection *conn, in tls_connection_set_log_cb() 150 void tls_connection_deinit(void *tls_ctx, struct tls_connection *conn) in tls_connection_deinit() 166 int tls_connection_established(void *tls_ctx, struct tls_connection *conn) in tls_connection_established() 181 struct tls_connection *conn) in tls_connection_peer_serial_num() 188 int tls_connection_shutdown(void *tls_ctx, struct tls_connection *conn) in tls_connection_shutdown() 202 int tls_connection_set_params(void *tls_ctx, struct tls_connection *conn, in tls_connection_set_params() 373 int tls_connection_set_verify(void *tls_ctx, struct tls_connection *conn, in tls_connection_set_verify() 385 int tls_connection_get_random(void *tls_ctx, struct tls_connection *conn, in tls_connection_get_random() [all …]
|
/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/crypto/ |
D | tls_mbedtls.c | 119 struct tls_connection *conn = (struct tls_connection *)ctx; in tls_mbedtls_write() local 132 struct tls_connection *conn = (struct tls_connection *)ctx; in tls_mbedtls_read() local 565 struct tls_connection *conn = (struct tls_connection *)ctx; in tls_key_derivation() local 573 static int tls_create_mbedtls_handle(struct tls_connection *conn, in tls_create_mbedtls_handle() 637 struct tls_connection *conn = os_zalloc(sizeof(*conn)); in tls_connection_init() local 646 void tls_connection_deinit(void *tls_ctx, struct tls_connection *conn) in tls_connection_deinit() 665 int tls_connection_established(void *tls_ctx, struct tls_connection *conn) in tls_connection_established() 678 int tls_connection_set_verify(void *tls_ctx, struct tls_connection *conn, in tls_connection_set_verify() 740 struct tls_connection *conn, in tls_connection_handshake() 801 struct tls_connection *conn, in tls_connection_server_handshake() [all …]
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/ |
D | proxy_client.c | 39 struct bt_mesh_conn *conn; member 55 static struct bt_mesh_proxy_server *find_server(struct bt_mesh_conn *conn) in find_server() 231 static ssize_t proxy_recv(struct bt_mesh_conn *conn, in proxy_recv() 324 static int proxy_send(struct bt_mesh_conn *conn, const void *data, uint16_t len) in proxy_send() 331 static int proxy_segment_and_send(struct bt_mesh_conn *conn, uint8_t type, in proxy_segment_and_send() 377 int bt_mesh_proxy_client_send(struct bt_mesh_conn *conn, uint8_t type, in bt_mesh_proxy_client_send() 395 static void proxy_connected(bt_mesh_addr_t *addr, struct bt_mesh_conn *conn, int id) in proxy_connected() 420 static void proxy_disconnected(bt_mesh_addr_t *addr, struct bt_mesh_conn *conn, uint8_t reason) in proxy_disconnected() 456 static ssize_t prov_write_ccc(bt_mesh_addr_t *addr, struct bt_mesh_conn *conn) in prov_write_ccc() 478 static ssize_t prov_recv_ntf(struct bt_mesh_conn *conn, uint8_t *data, uint16_t len) in prov_recv_ntf() [all …]
|
D | proxy_server.c | 82 struct bt_mesh_conn *conn; member 129 static struct bt_mesh_proxy_client *find_client(struct bt_mesh_conn *conn) in find_client() 373 static int beacon_send(struct bt_mesh_conn *conn, struct bt_mesh_subnet *sub) in beacon_send() 503 static ssize_t proxy_recv(struct bt_mesh_conn *conn, in proxy_recv() 589 static void proxy_connected(struct bt_mesh_conn *conn, uint8_t err) in proxy_connected() 630 static void proxy_disconnected(struct bt_mesh_conn *conn, uint8_t reason) in proxy_disconnected() 672 static ssize_t prov_ccc_write(struct bt_mesh_conn *conn, in prov_ccc_write() 707 static ssize_t prov_ccc_read(struct bt_mesh_conn *conn, in prov_ccc_read() 810 static ssize_t proxy_ccc_write(struct bt_mesh_conn *conn, in proxy_ccc_write() 845 static ssize_t proxy_ccc_read(struct bt_mesh_conn *conn, in proxy_ccc_read() [all …]
|
D | prov.c | 112 struct bt_mesh_conn *conn; /* GATT connection */ member 1657 int bt_mesh_pb_gatt_recv(struct bt_mesh_conn *conn, struct net_buf_simple *buf) in bt_mesh_pb_gatt_recv() 1715 int bt_mesh_pb_gatt_open(struct bt_mesh_conn *conn) in bt_mesh_pb_gatt_open() 1733 int bt_mesh_pb_gatt_close(struct bt_mesh_conn *conn) in bt_mesh_pb_gatt_close()
|
D | provisioner_prov.c | 141 struct bt_mesh_conn *conn; /* GATT connection */ member 3118 static struct bt_mesh_conn *find_conn(struct bt_mesh_conn *conn, uint8_t *idx) 3137 int bt_mesh_provisioner_pb_gatt_recv(struct bt_mesh_conn *conn, struct net_buf_simple *buf) 3180 int bt_mesh_provisioner_set_prov_conn(const uint8_t addr[6], struct bt_mesh_conn *conn) 3200 int bt_mesh_provisioner_pb_gatt_open(struct bt_mesh_conn *conn, uint8_t *addr) 3257 int bt_mesh_provisioner_pb_gatt_close(struct bt_mesh_conn *conn, uint8_t reason)
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/nimble_host/ |
D | mesh_bearer_adapt.c | 155 struct bt_mesh_conn conn; member 174 struct bt_mesh_conn *conn = NULL; in ble_on_subscribe() local 283 struct bt_mesh_conn *conn = &bt_mesh_gattc_info[i].conn; in chr_disced() local 342 struct bt_mesh_conn *conn = NULL; in svc_disced() local 411 struct bt_mesh_conn *conn = NULL; in disc_cb() local 1107 ssize_t bt_mesh_gatts_attr_read(struct bt_mesh_conn *conn, in bt_mesh_gatts_attr_read() 1133 ssize_t bt_mesh_gatts_attr_read_included(struct bt_mesh_conn *conn, in bt_mesh_gatts_attr_read_included() 1158 ssize_t bt_mesh_gatts_attr_read_service(struct bt_mesh_conn *conn, in bt_mesh_gatts_attr_read_service() 1183 ssize_t bt_mesh_gatts_attr_read_chrc(struct bt_mesh_conn *conn, in bt_mesh_gatts_attr_read_chrc() 1277 int bt_mesh_gatts_disconnect(struct bt_mesh_conn *conn, uint8_t reason) in bt_mesh_gatts_disconnect() [all …]
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/bluedroid_host/ |
D | mesh_bearer_adapt.c | 82 struct bt_mesh_conn conn; member 743 ssize_t bt_mesh_gatts_attr_read(struct bt_mesh_conn *conn, in bt_mesh_gatts_attr_read() 769 ssize_t bt_mesh_gatts_attr_read_included(struct bt_mesh_conn *conn, in bt_mesh_gatts_attr_read_included() 794 ssize_t bt_mesh_gatts_attr_read_service(struct bt_mesh_conn *conn, in bt_mesh_gatts_attr_read_service() 819 ssize_t bt_mesh_gatts_attr_read_chrc(struct bt_mesh_conn *conn, in bt_mesh_gatts_attr_read_chrc() 1042 int bt_mesh_gatts_disconnect(struct bt_mesh_conn *conn, uint8_t reason) in bt_mesh_gatts_disconnect() 1058 int bt_mesh_gatts_notify(struct bt_mesh_conn *conn, in bt_mesh_gatts_notify() 1067 uint16_t bt_mesh_gatt_get_mtu(struct bt_mesh_conn *conn) in bt_mesh_gatt_get_mtu() 1152 uint16_t bt_mesh_gattc_get_service_uuid(struct bt_mesh_conn *conn) in bt_mesh_gattc_get_service_uuid() 1257 uint16_t bt_mesh_gattc_get_mtu_info(struct bt_mesh_conn *conn) in bt_mesh_gattc_get_mtu_info() [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/hid/include/ |
D | hid_int.h | 44 tHID_CONN conn; /* L2CAP channel info */ member 98 tHID_CONN conn; member
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/hh/ |
D | bta_hh_act.c | 519 tBTA_HH_CONN conn ; in bta_hh_open_cmpl_act() local 648 tBTA_HH_CONN conn ; in bta_hh_handsk_act() local
|
/hal_espressif-latest/components/wpa_supplicant/src/eap_peer/ |
D | eap_tls_common.h | 19 struct tls_connection *conn; member
|
D | eap_fast_common.c | 96 u8 * eap_fast_derive_key(void *ssl_ctx, struct tls_connection *conn, size_t len) in eap_fast_derive_key()
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/include/stack/ |
D | avrc_api.h | 160 UINT8 conn; /* Connection role (Initiator/acceptor) */ member
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/dm/ |
D | bta_dm_pm.c | 981 tBTA_DM_SEC conn; in bta_dm_pm_btm_status() local
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/gap/include/ |
D | gap_int.h | 134 tGAP_CONN conn; member
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/btm/ |
D | btm_acl.c | 2162 tACL_CONN *conn = NULL; in btm_acl_pkt_types_changed() local 2728 tACL_CONN *conn = btm_handle_to_acl(handle); in btm_acl_disconnected() local
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/include/bta/ |
D | bta_hd_api.h | 143 tBTA_HD_CONN conn; /* BTA_HD_OPEN_EVT member
|
D | bta_hf_client_api.h | 253 tBTA_HF_CLIENT_CONN conn; member
|