Home
last modified time | relevance | path

Searched refs:sess (Results 226 - 250 of 357) sorted by relevance

12345678910>>...15

/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/
H A Deap_server.c1856 const struct eap_session_data *sess) in eap_server_sm_init()
1867 if (sess->assoc_wps_ie) in eap_server_sm_init()
1868 sm->assoc_wps_ie = wpabuf_dup(sess->assoc_wps_ie); in eap_server_sm_init()
1869 if (sess->assoc_p2p_ie) in eap_server_sm_init()
1870 sm->assoc_p2p_ie = wpabuf_dup(sess->assoc_p2p_ie); in eap_server_sm_init()
1871 if (sess->peer_addr) in eap_server_sm_init()
1872 os_memcpy(sm->peer_addr, sess->peer_addr, ETH_ALEN); in eap_server_sm_init()
1874 sm->tls_test_flags = sess->tls_test_flags; in eap_server_sm_init()
1853 eap_server_sm_init(void *eapol_ctx, const struct eapol_callbacks *eapol_cb, const struct eap_config *conf, const struct eap_session_data *sess) eap_server_sm_init() argument
/third_party/node/deps/openssl/openssl/ssl/statem/
H A Dextensions.c1492 unsigned char *binderout, SSL_SESSION *sess, int sign, in tls_psk_do_binder()
1523 && sess->ext.max_early_data > 0) in tls_psk_do_binder()
1545 early_secret = (unsigned char *)sess->early_secret; in tls_psk_do_binder()
1547 if (!tls13_generate_secret(s, md, NULL, sess->master_key, in tls_psk_do_binder()
1548 sess->master_key_length, early_secret)) { in tls_psk_do_binder()
1490 tls_psk_do_binder(SSL *s, const EVP_MD *md, const unsigned char *msgstart, size_t binderoffset, const unsigned char *binderin, unsigned char *binderout, SSL_SESSION *sess, int sign, int external) tls_psk_do_binder() argument
/third_party/openssl/ssl/statem/
H A Dextensions.c1460 unsigned char *binderout, SSL_SESSION *sess, int sign, in tls_psk_do_binder()
1491 && sess->ext.max_early_data > 0) in tls_psk_do_binder()
1513 early_secret = (unsigned char *)sess->early_secret; in tls_psk_do_binder()
1515 if (!tls13_generate_secret(s, md, NULL, sess->master_key, in tls_psk_do_binder()
1516 sess->master_key_length, early_secret)) { in tls_psk_do_binder()
1458 tls_psk_do_binder(SSL *s, const EVP_MD *md, const unsigned char *msgstart, size_t binderoffset, const unsigned char *binderin, unsigned char *binderout, SSL_SESSION *sess, int sign, int external) tls_psk_do_binder() argument
/third_party/node/deps/openssl/openssl/ssl/
H A Dt1_lib.c1807 SSL_SESSION *sess = NULL; in tls_decrypt_ticket() local
1965 sess = d2i_SSL_SESSION(NULL, &p, slen); in tls_decrypt_ticket()
1968 if (sess) { in tls_decrypt_ticket()
1971 SSL_SESSION_free(sess); in tls_decrypt_ticket()
1972 sess = NULL; in tls_decrypt_ticket()
1983 memcpy(sess->session_id, sess_id, sesslen); in tls_decrypt_ticket()
1984 sess->session_id_length = sesslen; in tls_decrypt_ticket()
2017 retcb = s->session_ctx->decrypt_ticket_cb(s, sess, etick, keyname_len, in tls_decrypt_ticket()
2027 SSL_SESSION_free(sess); in tls_decrypt_ticket()
2028 sess in tls_decrypt_ticket()
[all...]
/third_party/openssl/ssl/
H A Dt1_lib.c1787 SSL_SESSION *sess = NULL; in tls_decrypt_ticket() local
1945 sess = d2i_SSL_SESSION(NULL, &p, slen); in tls_decrypt_ticket()
1948 if (sess) { in tls_decrypt_ticket()
1951 SSL_SESSION_free(sess); in tls_decrypt_ticket()
1952 sess = NULL; in tls_decrypt_ticket()
1963 memcpy(sess->session_id, sess_id, sesslen); in tls_decrypt_ticket()
1964 sess->session_id_length = sesslen; in tls_decrypt_ticket()
1997 retcb = s->session_ctx->decrypt_ticket_cb(s, sess, etick, keyname_len, in tls_decrypt_ticket()
2007 SSL_SESSION_free(sess); in tls_decrypt_ticket()
2008 sess in tls_decrypt_ticket()
[all...]
/foundation/multimodalinput/input/service/dfx/include/
H A Ddfx_hisysevent.h81 static void ApplicationBlockInput(const SessionPtr& sess);
/kernel/linux/linux-5.10/drivers/block/rnbd/
H A Drnbd-srv-sysfs.c162 sess_dev->sess->sessname); in rnbd_srv_create_dev_session_sysfs()
H A Drnbd-clt-sysfs.c411 return scnprintf(page, PAGE_SIZE, "%s\n", dev->sess->sessname); in session_show()
497 len = strlen(dev->pathname) + strlen(dev->sess->sessname) + 2; in rnbd_clt_add_dev_symlink()
H A Drnbd-srv.c117 static int process_rdma(struct rtrs_srv *sess, in process_rdma() argument
219 xa_erase(&sess_dev->sess->index_idr, sess_dev->device_id); in rnbd_destroy_sess_dev()
581 sdev->sess = srv_sess; in rnbd_srv_create_set_sess_dev()
/kernel/linux/linux-5.10/drivers/infiniband/ulp/srpt/
H A Dib_srpt.h288 * @sess: Session information associated with this SRP channel.
328 struct se_session *sess; member
/kernel/linux/linux-6.6/drivers/infiniband/ulp/srpt/
H A Dib_srpt.h288 * @sess: Session information associated with this SRP channel.
328 struct se_session *sess; member
/third_party/openssl/test/
H A Dssl_old_test.c828 SSL_SESSION *sess; in read_session() local
836 sess = PEM_read_bio_SSL_SESSION(f, NULL, 0, NULL); in read_session()
837 if (sess == NULL) { in read_session()
842 return sess; in read_session()
845 static int write_session(const char *filename, SSL_SESSION *sess) in write_session() argument
849 if (sess == NULL) { in write_session()
860 PEM_write_bio_SSL_SESSION(f, sess); in write_session()
/third_party/openssl/ohos_lite/include/openssl/
H A Dssl.h711 SSL_SESSION *sess));
713 SSL_SESSION *sess);
717 SSL_SESSION *sess));
719 SSL_SESSION *sess);
848 SSL_SESSION **sess);
852 SSL_SESSION **sess);
2007 __owur size_t SSL_SESSION_get_master_key(const SSL_SESSION *sess,
2009 __owur int SSL_SESSION_set1_master_key(SSL_SESSION *sess,
2011 uint8_t SSL_SESSION_get_max_fragment_length(const SSL_SESSION *sess);
/foundation/multimodalinput/input/service/window_manager/test/
H A Dmock.cpp144 void UDSServer::OnConnected(SessionPtr sess) in OnConnected() argument
147 void UDSServer::OnDisconnected(SessionPtr sess) in OnDisconnected() argument
/kernel/linux/linux-5.10/drivers/scsi/qla4xxx/
H A Dql4_iocb.c386 struct iscsi_session *sess = task->conn->session; in qla4xxx_send_passthru0() local
387 struct ddb_entry *ddb_entry = sess->dd_data; in qla4xxx_send_passthru0()
/kernel/linux/linux-5.10/include/scsi/
H A Dscsi_transport_iscsi.h83 struct iscsi_cls_conn *(*create_conn) (struct iscsi_cls_session *sess,
455 extern struct iscsi_cls_conn *iscsi_create_conn(struct iscsi_cls_session *sess,
/kernel/linux/linux-6.6/fs/smb/server/
H A Dsmb_common.h409 int (*generate_signingkey)(struct ksmbd_session *sess, struct ksmbd_conn *conn);
410 int (*generate_encryptionkey)(struct ksmbd_conn *conn, struct ksmbd_session *sess);
/kernel/linux/linux-6.6/include/scsi/
H A Dscsi_transport_iscsi.h83 struct iscsi_cls_conn *(*create_conn) (struct iscsi_cls_session *sess,
457 extern struct iscsi_cls_conn *iscsi_alloc_conn(struct iscsi_cls_session *sess,
/kernel/linux/linux-6.6/drivers/scsi/qla4xxx/
H A Dql4_iocb.c386 struct iscsi_session *sess = task->conn->session; in qla4xxx_send_passthru0() local
387 struct ddb_entry *ddb_entry = sess->dd_data; in qla4xxx_send_passthru0()
/kernel/linux/linux-6.6/drivers/scsi/qla2xxx/
H A Dqla_edif.c505 "%s reset sess at app start \n", __func__); in qla_delete_n2n_sess_and_wait()
591 "%s: se_sess %p / sess %p from port %8phC " in qla_edif_app_start()
696 "%s: sess %p from port %8phC lid %#04x s_id %06x logout %d keep %d els_logo %d\n", in qla_edif_app_stop()
3679 void qla_edif_sess_down(struct scsi_qla_host *vha, struct fc_port *sess) in qla_edif_sess_down() argument
3683 if (sess->edif.app_sess_online && DBELL_ACTIVE(vha)) { in qla_edif_sess_down()
3685 "%s: sess %8phN send port_offline event\n", in qla_edif_sess_down()
3686 __func__, sess->port_name); in qla_edif_sess_down()
3687 sess->edif.app_sess_online = 0; in qla_edif_sess_down()
3688 sess->edif.sess_down_acked = 0; in qla_edif_sess_down()
3690 sess in qla_edif_sess_down()
[all...]
/kernel/linux/linux-5.10/drivers/target/
H A Dtarget_core_xcopy.c81 static int target_xcopy_locate_se_dev_e4(struct se_session *sess, in target_xcopy_locate_se_dev_e4() argument
91 /* cmd with NULL sess indicates no associated $FABRIC_MOD */ in target_xcopy_locate_se_dev_e4()
92 if (!sess) in target_xcopy_locate_se_dev_e4()
98 nacl = sess->se_node_acl; in target_xcopy_locate_se_dev_e4()
/kernel/linux/linux-6.6/drivers/target/
H A Dtarget_core_xcopy.c68 static int target_xcopy_locate_se_dev_e4(struct se_session *sess, in target_xcopy_locate_se_dev_e4() argument
78 /* cmd with NULL sess indicates no associated $FABRIC_MOD */ in target_xcopy_locate_se_dev_e4()
79 if (!sess) in target_xcopy_locate_se_dev_e4()
85 nacl = sess->se_node_acl; in target_xcopy_locate_se_dev_e4()
/third_party/node/deps/openssl/openssl/ssl/record/
H A Drec_layer_d1.c801 SSL_SESSION *sess; in do_dtls1_write() local
830 sess = s->session; in do_dtls1_write()
832 if ((sess == NULL) in do_dtls1_write()
/third_party/openssl/ssl/record/
H A Drec_layer_d1.c801 SSL_SESSION *sess; in do_dtls1_write() local
830 sess = s->session; in do_dtls1_write()
832 if ((sess == NULL) in do_dtls1_write()
/kernel/linux/linux-5.10/drivers/target/sbp/
H A Dsbp_target.h126 struct sbp_session *sess; member

Completed in 52 milliseconds

12345678910>>...15