Home
last modified time | relevance | path

Searched defs:conn (Results 1 – 25 of 32) sorted by relevance

12

/hal_espressif-2.7.6/components/wpa_supplicant/src/tls/
Dtlsv1_server.c24 void tlsv1_server_alert(struct tlsv1_server *conn, u8 level, u8 description) in tlsv1_server_alert()
31 int tlsv1_server_derive_keys(struct tlsv1_server *conn, in tlsv1_server_derive_keys()
107 u8 * tlsv1_server_handshake(struct tlsv1_server *conn, in tlsv1_server_handshake()
200 int tlsv1_server_encrypt(struct tlsv1_server *conn, in tlsv1_server_encrypt()
233 int tlsv1_server_decrypt(struct tlsv1_server *conn, in tlsv1_server_decrypt()
343 struct tlsv1_server *conn; in tlsv1_server_init() local
377 static void tlsv1_server_clear_data(struct tlsv1_server *conn) in tlsv1_server_clear_data()
402 void tlsv1_server_deinit(struct tlsv1_server *conn) in tlsv1_server_deinit()
414 int tlsv1_server_established(struct tlsv1_server *conn) in tlsv1_server_established()
430 int tlsv1_server_prf(struct tlsv1_server *conn, const char *label, in tlsv1_server_prf()
[all …]
Dtlsv1_client.c24 void tls_alert(struct tlsv1_client *conn, u8 level, u8 description) in tls_alert()
31 void tlsv1_client_free_dh(struct tlsv1_client *conn) in tlsv1_client_free_dh()
50 int tls_derive_keys(struct tlsv1_client *conn, in tls_derive_keys()
139 u8 * tlsv1_client_handshake(struct tlsv1_client *conn, in tlsv1_client_handshake()
273 int tlsv1_client_encrypt(struct tlsv1_client *conn, in tlsv1_client_encrypt()
306 struct wpabuf * tlsv1_client_decrypt(struct tlsv1_client *conn, in tlsv1_client_decrypt()
443 struct tlsv1_client *conn; in tlsv1_client_init() local
483 void tlsv1_client_deinit(struct tlsv1_client *conn) in tlsv1_client_deinit()
503 int tlsv1_client_established(struct tlsv1_client *conn) in tlsv1_client_established()
519 int tlsv1_client_prf(struct tlsv1_client *conn, const char *label, in tlsv1_client_prf()
[all …]
Dtls_internal.c83 struct tls_connection *conn; in tls_connection_init() local
112 void tls_connection_deinit(void *tls_ctx, struct tls_connection *conn) in tls_connection_deinit()
128 int tls_connection_established(void *tls_ctx, struct tls_connection *conn) in tls_connection_established()
142 int tls_connection_shutdown(void *tls_ctx, struct tls_connection *conn) in tls_connection_shutdown()
156 int tls_connection_set_params(void *tls_ctx, struct tls_connection *conn, in tls_connection_set_params()
269 int tls_connection_set_verify(void *tls_ctx, struct tls_connection *conn, in tls_connection_set_verify()
279 int tls_connection_get_random(void *tls_ctx, struct tls_connection *conn, in tls_connection_get_random()
293 static int tls_get_keyblock_size(struct tls_connection *conn) in tls_get_keyblock_size()
306 static int tls_connection_prf(void *tls_ctx, struct tls_connection *conn, in tls_connection_prf()
344 int tls_connection_export_key(void *tls_ctx, struct tls_connection *conn, in tls_connection_export_key()
[all …]
Dtlsv1_server_write.c25 static size_t tls_server_cert_chain_der_len(struct tlsv1_server *conn) in tls_server_cert_chain_der_len()
43 static int tls_write_server_hello(struct tlsv1_server *conn, in tls_write_server_hello()
157 static int tls_write_server_certificate(struct tlsv1_server *conn, in tls_write_server_certificate()
244 static int tls_write_server_key_exchange(struct tlsv1_server *conn, in tls_write_server_key_exchange()
437 static int tls_write_server_certificate_request(struct tlsv1_server *conn, in tls_write_server_certificate_request()
503 static int tls_write_server_hello_done(struct tlsv1_server *conn, in tls_write_server_hello_done()
540 static int tls_write_server_change_cipher_spec(struct tlsv1_server *conn, in tls_write_server_change_cipher_spec()
573 static int tls_write_server_finished(struct tlsv1_server *conn, in tls_write_server_finished()
666 static u8 * tls_send_server_hello(struct tlsv1_server *conn, size_t *out_len) in tls_send_server_hello()
719 static u8 * tls_send_change_cipher_spec(struct tlsv1_server *conn, in tls_send_change_cipher_spec()
[all …]
Dtlsv1_client_write.c25 static size_t tls_client_cert_chain_der_len(struct tlsv1_client *conn) in tls_client_cert_chain_der_len()
46 u8 * tls_send_client_hello(struct tlsv1_client *conn, size_t *out_len) in tls_send_client_hello()
161 static int tls_write_client_certificate(struct tlsv1_client *conn, in tls_write_client_certificate()
240 static int tlsv1_key_x_anon_dh(struct tlsv1_client *conn, u8 **pos, u8 *end) in tlsv1_key_x_anon_dh()
356 static int tlsv1_key_x_rsa(struct tlsv1_client *conn, u8 **pos, u8 *end) in tlsv1_key_x_rsa()
403 static int tls_write_client_key_exchange(struct tlsv1_client *conn, in tls_write_client_key_exchange()
461 static int tls_write_client_certificate_verify(struct tlsv1_client *conn, in tls_write_client_certificate_verify()
639 static int tls_write_client_change_cipher_spec(struct tlsv1_client *conn, in tls_write_client_change_cipher_spec()
672 static int tls_write_client_finished(struct tlsv1_client *conn, in tls_write_client_finished()
763 static u8 * tls_send_client_key_exchange(struct tlsv1_client *conn, in tls_send_client_key_exchange()
[all …]
Dtlsv1_client_read.c31 static int tls_process_server_hello(struct tlsv1_client *conn, u8 ct, in tls_process_server_hello()
215 static int tls_process_certificate(struct tlsv1_client *conn, u8 ct, in tls_process_certificate()
411 static int tlsv1_process_diffie_hellman(struct tlsv1_client *conn, in tlsv1_process_diffie_hellman()
534 static int tls_process_server_key_exchange(struct tlsv1_client *conn, u8 ct, in tls_process_server_key_exchange()
624 static int tls_process_certificate_request(struct tlsv1_client *conn, u8 ct, in tls_process_certificate_request()
687 static int tls_process_server_hello_done(struct tlsv1_client *conn, u8 ct, in tls_process_server_hello_done()
743 static int tls_process_server_change_cipher_spec(struct tlsv1_client *conn, in tls_process_server_change_cipher_spec()
813 static int tls_process_server_finished(struct tlsv1_client *conn, u8 ct, in tls_process_server_finished()
941 static int tls_process_application_data(struct tlsv1_client *conn, u8 ct, in tls_process_application_data()
972 int tlsv1_client_process_handshake(struct tlsv1_client *conn, u8 ct, in tlsv1_client_process_handshake()
Dtlsv1_server_read.c31 static int tls_process_client_hello(struct tlsv1_server *conn, u8 ct, in tls_process_client_hello()
278 static int tls_process_certificate(struct tlsv1_server *conn, u8 ct, in tls_process_certificate()
480 struct tlsv1_server *conn, const u8 *pos, const u8 *end) in tls_process_client_key_exchange_rsa()
586 struct tlsv1_server *conn, const u8 *pos, const u8 *end) in tls_process_client_key_exchange_dh_anon()
689 static int tls_process_client_key_exchange(struct tlsv1_server *conn, u8 ct, in tls_process_client_key_exchange()
767 static int tls_process_certificate_verify(struct tlsv1_server *conn, u8 ct, in tls_process_certificate_verify()
1013 static int tls_process_change_cipher_spec(struct tlsv1_server *conn, in tls_process_change_cipher_spec()
1063 static int tls_process_client_finished(struct tlsv1_server *conn, u8 ct, in tls_process_client_finished()
1201 int tlsv1_server_process_handshake(struct tlsv1_server *conn, u8 ct, in tlsv1_server_process_handshake()
/hal_espressif-2.7.6/components/wpa_supplicant/src/crypto/
Dtls_mbedtls.c103 struct tls_connection *conn = (struct tls_connection *)ctx; in tls_mbedtls_write() local
119 struct tls_connection *conn = (struct tls_connection *)ctx; in tls_mbedtls_read() local
494 struct tls_connection *conn = os_zalloc(sizeof(*conn)); in tls_connection_init() local
503 void tls_connection_deinit(void *tls_ctx, struct tls_connection *conn) in tls_connection_deinit()
522 int tls_connection_established(void *tls_ctx, struct tls_connection *conn) in tls_connection_established()
539 int tls_connection_set_verify(void *tls_ctx, struct tls_connection *conn, in tls_connection_set_verify()
547 struct tls_connection *conn, in tls_connection_handshake()
620 struct tls_connection *conn, in tls_connection_server_handshake()
630 struct tls_connection *conn, in tls_connection_encrypt()
649 struct tls_connection *conn, in tls_connection_decrypt()
[all …]
/hal_espressif-2.7.6/tools/ci/python_packages/idf_http_server_test/
Dadder.py30 def end_session(conn): argument
34 def getreq(conn, path, verbose=False): argument
47 def postreq(conn, path, data, verbose=False): argument
60 def putreq(conn, path, body, verbose=False): argument
88 conn = start_session(ip, port) variable
/hal_espressif-2.7.6/components/bt/esp_ble_mesh/mesh_core/
Dproxy_client.c47 struct bt_mesh_conn *conn; member
63 static struct bt_mesh_proxy_server *find_server(struct bt_mesh_conn *conn) in find_server()
239 static ssize_t proxy_recv(struct bt_mesh_conn *conn, in proxy_recv()
332 static int proxy_send(struct bt_mesh_conn *conn, const void *data, uint16_t len) in proxy_send()
339 static int proxy_segment_and_send(struct bt_mesh_conn *conn, uint8_t type, in proxy_segment_and_send()
385 int bt_mesh_proxy_client_send(struct bt_mesh_conn *conn, uint8_t type, in bt_mesh_proxy_client_send()
403 static void proxy_connected(bt_mesh_addr_t *addr, struct bt_mesh_conn *conn, int id) in proxy_connected()
428 static void proxy_disconnected(bt_mesh_addr_t *addr, struct bt_mesh_conn *conn, uint8_t reason) in proxy_disconnected()
464 static ssize_t prov_write_ccc(bt_mesh_addr_t *addr, struct bt_mesh_conn *conn) in prov_write_ccc()
486 static ssize_t prov_recv_ntf(struct bt_mesh_conn *conn, uint8_t *data, uint16_t len) in prov_recv_ntf()
[all …]
Dproxy_server.c79 struct bt_mesh_conn *conn; member
132 static struct bt_mesh_proxy_client *find_client(struct bt_mesh_conn *conn) in find_client()
359 static int beacon_send(struct bt_mesh_conn *conn, struct bt_mesh_subnet *sub) in beacon_send()
489 static ssize_t proxy_recv(struct bt_mesh_conn *conn, in proxy_recv()
575 static void proxy_connected(struct bt_mesh_conn *conn, uint8_t err) in proxy_connected()
612 static void proxy_disconnected(struct bt_mesh_conn *conn, uint8_t reason) in proxy_disconnected()
649 static ssize_t prov_ccc_write(struct bt_mesh_conn *conn, in prov_ccc_write()
684 static ssize_t prov_ccc_read(struct bt_mesh_conn *conn, in prov_ccc_read()
787 static ssize_t proxy_ccc_write(struct bt_mesh_conn *conn, in proxy_ccc_write()
822 static ssize_t proxy_ccc_read(struct bt_mesh_conn *conn, in proxy_ccc_read()
[all …]
Dprov.c111 struct bt_mesh_conn *conn; /* GATT connection */ member
1626 int bt_mesh_pb_gatt_recv(struct bt_mesh_conn *conn, struct net_buf_simple *buf) in bt_mesh_pb_gatt_recv()
1669 int bt_mesh_pb_gatt_open(struct bt_mesh_conn *conn) in bt_mesh_pb_gatt_open()
1687 int bt_mesh_pb_gatt_close(struct bt_mesh_conn *conn) in bt_mesh_pb_gatt_close()
Dprovisioner_prov.c146 struct bt_mesh_conn *conn; /* GATT connection */ member
3036 static struct bt_mesh_conn *find_conn(struct bt_mesh_conn *conn, uint8_t *idx)
3055 int bt_mesh_provisioner_pb_gatt_recv(struct bt_mesh_conn *conn, struct net_buf_simple *buf)
3098 int bt_mesh_provisioner_set_prov_conn(const uint8_t addr[6], struct bt_mesh_conn *conn)
3118 int bt_mesh_provisioner_pb_gatt_open(struct bt_mesh_conn *conn, uint8_t *addr)
3175 int bt_mesh_provisioner_pb_gatt_close(struct bt_mesh_conn *conn, uint8_t reason)
/hal_espressif-2.7.6/components/bt/esp_ble_mesh/mesh_core/nimble_host/
Dmesh_bearer_adapt.c130 struct bt_mesh_conn conn; member
149 struct bt_mesh_conn *conn = NULL; in ble_on_subscribe() local
258 struct bt_mesh_conn *conn = &bt_mesh_gattc_info[i].conn; in chr_disced() local
317 struct bt_mesh_conn *conn = NULL; in svc_disced() local
386 struct bt_mesh_conn *conn = NULL; in disc_cb() local
1062 ssize_t bt_mesh_gatts_attr_read(struct bt_mesh_conn *conn, in bt_mesh_gatts_attr_read()
1088 ssize_t bt_mesh_gatts_attr_read_included(struct bt_mesh_conn *conn, in bt_mesh_gatts_attr_read_included()
1113 ssize_t bt_mesh_gatts_attr_read_service(struct bt_mesh_conn *conn, in bt_mesh_gatts_attr_read_service()
1138 ssize_t bt_mesh_gatts_attr_read_chrc(struct bt_mesh_conn *conn, in bt_mesh_gatts_attr_read_chrc()
1232 int bt_mesh_gatts_disconnect(struct bt_mesh_conn *conn, uint8_t reason) in bt_mesh_gatts_disconnect()
[all …]
/hal_espressif-2.7.6/components/bt/esp_ble_mesh/mesh_core/bluedroid_host/
Dmesh_bearer_adapt.c82 struct bt_mesh_conn conn; member
719 ssize_t bt_mesh_gatts_attr_read(struct bt_mesh_conn *conn, in bt_mesh_gatts_attr_read()
745 ssize_t bt_mesh_gatts_attr_read_included(struct bt_mesh_conn *conn, in bt_mesh_gatts_attr_read_included()
770 ssize_t bt_mesh_gatts_attr_read_service(struct bt_mesh_conn *conn, in bt_mesh_gatts_attr_read_service()
795 ssize_t bt_mesh_gatts_attr_read_chrc(struct bt_mesh_conn *conn, in bt_mesh_gatts_attr_read_chrc()
1018 int bt_mesh_gatts_disconnect(struct bt_mesh_conn *conn, uint8_t reason) in bt_mesh_gatts_disconnect()
1034 int bt_mesh_gatts_notify(struct bt_mesh_conn *conn, in bt_mesh_gatts_notify()
1043 uint16_t bt_mesh_gatt_get_mtu(struct bt_mesh_conn *conn) in bt_mesh_gatt_get_mtu()
1128 uint16_t bt_mesh_gattc_get_service_uuid(struct bt_mesh_conn *conn) in bt_mesh_gattc_get_service_uuid()
1228 uint16_t bt_mesh_gattc_get_mtu_info(struct bt_mesh_conn *conn) in bt_mesh_gattc_get_mtu_info()
[all …]
/hal_espressif-2.7.6/components/wpa_supplicant/src/eap_peer/
Deap_tls_common.h19 struct tls_connection *conn; member
/hal_espressif-2.7.6/components/bt/host/bluedroid/bta/hh/
Dbta_hh_act.c518 tBTA_HH_CONN conn ; in bta_hh_open_cmpl_act() local
646 tBTA_HH_CONN conn ; in bta_hh_handsk_act() local
/hal_espressif-2.7.6/components/bt/host/bluedroid/btc/profile/std/hid/include/
Dhidh_int.h48 tHID_CONN conn; /* L2CAP channel info */ member
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/include/stack/
Davrc_api.h160 UINT8 conn; /* Connection role (Initiator/acceptor) */ member
/hal_espressif-2.7.6/examples/bluetooth/bluedroid/classic_bt/hfp_ag/main/
Dapp_hf_msg_set.c61 HF_CMD_HANDLER(conn) in HF_CMD_HANDLER() argument
/hal_espressif-2.7.6/examples/bluetooth/bluedroid/classic_bt/hfp_hf/main/
Dapp_hf_msg_set.c63 HF_CMD_HANDLER(conn) in HF_CMD_HANDLER() argument
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/gap/include/
Dgap_int.h134 tGAP_CONN conn; member
/hal_espressif-2.7.6/components/bt/host/bluedroid/bta/dm/
Dbta_dm_pm.c981 tBTA_DM_SEC conn; in bta_dm_pm_btm_status() local
/hal_espressif-2.7.6/components/bt/host/bluedroid/bta/include/bta/
Dbta_hf_client_api.h227 tBTA_HF_CLIENT_CONN conn; member
Dbta_hh_api.h280 tBTA_HH_CONN conn; /* BTA_HH_OPEN_EVT */ member

12