/kernel/linux/linux-5.10/fs/hmdfs/comm/ |
D | crypto.c | 67 tcp->connect->send_crypto_info.info.version = TLS_1_2_VERSION; in tls_crypto_info_init() 68 tcp->connect->send_crypto_info.info.cipher_type = in tls_crypto_info_init() 71 memcpy(tcp->connect->send_crypto_info.key, tcp->connect->send_key, in tls_crypto_info_init() 73 memcpy(tcp->connect->send_crypto_info.iv, in tls_crypto_info_init() 75 memcpy(tcp->connect->send_crypto_info.salt, in tls_crypto_info_init() 78 memcpy(tcp->connect->send_crypto_info.rec_seq, in tls_crypto_info_init() 83 KERNEL_SOCKPTR(&(tcp->connect->send_crypto_info)), in tls_crypto_info_init() 84 sizeof(tcp->connect->send_crypto_info)); in tls_crypto_info_init() 89 update_key(tcp->connect->recv_key, key_meterial, HKDF_TYPE_IV); in tls_crypto_info_init() 90 tcp->connect->recv_crypto_info.info.version = TLS_1_2_VERSION; in tls_crypto_info_init() [all …]
|
D | transport.c | 215 static int tcp_recvpage_tls(struct connection *connect, in tcp_recvpage_tls() argument 225 if (!connect) { in tcp_recvpage_tls() 226 hmdfs_err("tcp connect == NULL"); in tcp_recvpage_tls() 229 node = connect->node; in tcp_recvpage_tls() 230 tcp = (struct tcp_handle *)(connect->connect_handle); in tcp_recvpage_tls() 393 static int tcp_recvbuffer_cipher(struct connection *connect, in tcp_recvbuffer_cipher() argument 404 tcp = (struct tcp_handle *)(connect->connect_handle); in tcp_recvbuffer_cipher() 430 ret = aeadcipher_decrypt_buffer(connect, cipherbuffer, cipherbuffer_len, in tcp_recvbuffer_cipher() 437 if (connect_recv_callback[connect->status]) { in tcp_recvbuffer_cipher() 438 connect_recv_callback[connect->status](connect, recv, outdata, in tcp_recvbuffer_cipher() [all …]
|
/kernel/linux/linux-5.10/net/wireless/ |
D | wext-sme.c | 31 wdev->wext.connect.ie = wdev->wext.ie; in cfg80211_mgd_wext_connect() 32 wdev->wext.connect.ie_len = wdev->wext.ie_len; in cfg80211_mgd_wext_connect() 35 wdev->wext.connect.bg_scan_period = -1; in cfg80211_mgd_wext_connect() 40 wdev->wext.connect.privacy = true; in cfg80211_mgd_wext_connect() 43 if (!wdev->wext.connect.ssid_len) in cfg80211_mgd_wext_connect() 58 &wdev->wext.connect, ck, prev_bssid); in cfg80211_mgd_wext_connect() 95 if (wdev->wext.connect.channel == chan) { in cfg80211_mgd_wext_siwfreq() 101 if (wdev->wext.connect.ssid_len) in cfg80211_mgd_wext_siwfreq() 109 wdev->wext.connect.channel = chan; in cfg80211_mgd_wext_siwfreq() 130 else if (wdev->wext.connect.channel) in cfg80211_mgd_wext_giwfreq() [all …]
|
D | sme.c | 5 * (for nl80211's connect() and wext) 27 * driver. This is for implementing nl80211's connect/disconnect 515 struct cfg80211_connect_params *connect, in cfg80211_sme_connect() argument 543 memcpy(&wdev->conn->params, connect, sizeof(*connect)); in cfg80211_sme_connect() 544 if (connect->bssid) { in cfg80211_sme_connect() 546 memcpy(wdev->conn->bssid, connect->bssid, ETH_ALEN); in cfg80211_sme_connect() 549 if (cfg80211_sme_get_conn_ies(wdev, connect->ie, connect->ie_len, in cfg80211_sme_connect() 558 if (connect->auth_type == NL80211_AUTHTYPE_AUTOMATIC) { in cfg80211_sme_connect() 674 * API calls for drivers implementing connect/disconnect and 729 WARN_ON_ONCE(!wiphy_to_rdev(wdev->wiphy)->ops->connect); in __cfg80211_connect_result() [all …]
|
/kernel/linux/linux-5.10/sound/soc/tegra/ |
D | tegra20_das.h | 83 * The Tegra DAS is a mux/cross-bar which can connect each DAP to a specific 94 * Connect a DAP to a DAC 95 * dap_id: DAP to connect: TEGRA20_DAS_DAP_ID_* 96 * dac_sel: DAC to connect to: TEGRA20_DAS_DAP_SEL_DAC* 101 * Connect a DAP to another DAP 102 * dap_id: DAP to connect: TEGRA20_DAS_DAP_ID_* 103 * other_dap_sel: DAP to connect to: TEGRA20_DAS_DAP_SEL_DAP* 113 * Connect a DAC's input to a DAP 115 * dac_id: DAC ID to connect: TEGRA20_DAS_DAC_ID_*
|
/kernel/liteos_a/bsd/dev/usb/ |
D | Kconfig | 62 Say Y here if you want to connect USB mass storage devices to your system's USB port. 69 Say Y here if you want to connect USB Rndis Host devices to your system's USB port. 76 Say Y here if you want to connect USB 4G devices to your system's USB port. 83 Say Y here if you want to connect USB serial devices to your system's USB port. 89 Say Y here if you want to connect USB ethernet devices to your system's USB port. 95 Say Y here if you want to connect usb-wifi devices to your system's USB port. 100 Say Y here if you want to connect hid devices to your system's USB port.
|
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/fm10k/ |
D | fm10k_mbx.h | 45 * +----------+ connect() +----------+ 46 * | CLOSED | --------------> | CONNECT | 50 * | Connect Disconnect | | Connect 63 * this state is for the system to make the connect() call for the 64 * mailbox, it will then transition to the connect state. 65 * Connect: In this state the mailbox is seeking a connection. It will 66 * post a connect message with no specified destination and will 68 * is exited when either a connect with the local mailbox as the 72 * entity and the remote. It will fall back to connect in the event of 78 * remote endpoint has fallen back into connect. [all …]
|
/kernel/linux/linux-5.10/tools/testing/vsock/ |
D | vsock_test.c | 41 ret = connect(fd, &addr.sa, sizeof(addr.svm)); in test_stream_connection_reset() 42 timeout_check("connect"); in test_stream_connection_reset() 47 fprintf(stderr, "expected connect(2) failure, got %d\n", ret); in test_stream_connection_reset() 51 fprintf(stderr, "unexpected connect(2) errno %d\n", errno); in test_stream_connection_reset() 80 ret = connect(fd, &addr.sa, sizeof(addr.svm)); in test_stream_bind_only_client() 81 timeout_check("connect"); in test_stream_bind_only_client() 86 fprintf(stderr, "expected connect(2) failure, got %d\n", ret); in test_stream_bind_only_client() 90 fprintf(stderr, "unexpected connect(2) errno %d\n", errno); in test_stream_bind_only_client() 136 perror("connect"); in test_stream_client_close_client() 171 perror("connect"); in test_stream_server_close_client() [all …]
|
/kernel/linux/linux-5.10/drivers/usb/misc/ |
D | usb3503.c | 51 struct gpio_desc *connect; member 57 if (!state && hub->connect) in usb3503_reset() 58 gpiod_set_value_cansleep(hub->connect, 0); in usb3503_reset() 107 /* SP_LOCK: clear connect_n, config_n for hub connect */ in usb3503_connect() 117 if (hub->connect) in usb3503_connect() 118 gpiod_set_value_cansleep(hub->connect, 1); in usb3503_connect() 244 hub->connect = devm_gpiod_get_optional(dev, "connect", GPIOD_OUT_LOW); in usb3503_probe() 245 if (IS_ERR(hub->connect)) in usb3503_probe() 246 return PTR_ERR(hub->connect); in usb3503_probe() 247 if (hub->connect) in usb3503_probe() [all …]
|
/kernel/linux/linux-5.10/sound/soc/sh/rcar/ |
D | ctu.c | 24 * 0001: Connect input data of channel 0 25 * 0010: Connect input data of channel 1 26 * 0011: Connect input data of channel 2 27 * 0100: Connect input data of channel 3 28 * 0101: Connect input data of channel 4 29 * 0110: Connect input data of channel 5 30 * 0111: Connect input data of channel 6 31 * 1000: Connect input data of channel 7 32 * 1001: Connect calculated data by scale values of matrix row 0 33 * 1010: Connect calculated data by scale values of matrix row 1 [all …]
|
/kernel/linux/linux-5.10/include/uapi/linux/ |
D | mei.h | 41 * IOCTL Connect Client Data structure 72 * @in_client_uuid: UUID of client to connect 83 * struct mei_connect_client_data_vtag - IOCTL connect data union 85 * @connect: input connect data 90 struct mei_connect_client_vtag connect; member
|
D | seg6_local.h | 37 /* adjacency segment (IPv6 cross-connect) */ 41 /* decap and L2 cross-connect */ 43 /* decap and IPv6 cross-connect */ 45 /* decap and IPv4 cross-connect */
|
/kernel/linux/linux-5.10/drivers/nvme/host/ |
D | fabrics.c | 258 * out function for connect() errors. 281 char *inv_data = "Connect Invalid Data Parameter"; in nvmf_log_connect_error() 306 char *inv_sqe = "Connect Invalid SQE Parameter"; in nvmf_log_connect_error() 312 inv_sqe, cmd->connect.qid); in nvmf_log_connect_error() 324 "Connect for subsystem %s is not allowed, hostnqn: %s\n", in nvmf_log_connect_error() 330 "Connect command failed: controller is busy or not available\n"); in nvmf_log_connect_error() 335 "Connect incompatible format: %d", in nvmf_log_connect_error() 336 cmd->connect.recfmt); in nvmf_log_connect_error() 341 "Connect command failed: host path error\n"); in nvmf_log_connect_error() 346 "Connect command failed, error wo/DNR bit: %d\n", in nvmf_log_connect_error() [all …]
|
/kernel/linux/linux-5.10/include/linux/ |
D | nvme-rdma.h | 49 * struct nvme_rdma_cm_req - rdma connect request 65 * struct nvme_rdma_cm_rep - rdma connect reply 77 * struct nvme_rdma_cm_rej - rdma connect reject 80 * @sts: error status for the associated connect request
|
/kernel/linux/linux-5.10/scripts/kconfig/ |
D | qconf.cc | 313 connect(this, SIGNAL(itemSelectionChanged(void)), in ConfigList() 321 connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings())); in ConfigList() 891 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent() 893 connect(this, SIGNAL(showNameChanged(bool)), in contextMenuEvent() 939 connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings())); in ConfigInfoView() 946 connect(action, SIGNAL(toggled(bool)), SLOT(setShowDebug(bool))); in ConfigInfoView() 947 connect(this, SIGNAL(showDebugChanged(bool)), action, SLOT(setChecked(bool))); in ConfigInfoView() 1234 connect(editField, SIGNAL(returnPressed()), SLOT(search())); in ConfigSearchWindow() 1238 connect(searchButton, SIGNAL(clicked()), SLOT(search())); in ConfigSearchWindow() 1247 connect(list, SIGNAL(menuChanged(struct menu *)), in ConfigSearchWindow() [all …]
|
/kernel/linux/linux-5.10/tools/include/uapi/linux/ |
D | seg6_local.h | 37 /* adjacency segment (IPv6 cross-connect) */ 41 /* decap and L2 cross-connect */ 43 /* decap and IPv6 cross-connect */ 45 /* decap and IPv4 cross-connect */
|
/kernel/linux/linux-5.10/drivers/nfc/ |
D | mei_phy.c | 144 struct mei_nfc_connect *connect; in mei_nfc_connect() local 160 connect = (struct mei_nfc_connect *)cmd->data; in mei_nfc_connect() 173 connect->fw_ivn = phy->fw_ivn; in mei_nfc_connect() 174 connect->vendor_id = phy->vendor_id; in mei_nfc_connect() 176 MEI_DUMP_NFC_HDR("connect request", &cmd->hdr); in mei_nfc_connect() 179 pr_err("Could not send connect cmd %d\n", r); in mei_nfc_connect() 187 pr_err("Could not read connect response %d\n", r); in mei_nfc_connect() 191 MEI_DUMP_NFC_HDR("connect reply", &reply->hdr); in mei_nfc_connect() 342 pr_err("Could not connect to device %d\n", r); in nfc_mei_phy_enable()
|
/kernel/linux/linux-5.10/include/net/ |
D | llc_if.h | 55 #define LLC_STATUS_CONN 0 /* connect confirm & reset confirm */ 56 #define LLC_STATUS_DISC 1 /* connect confirm & reset confirm */ 57 #define LLC_STATUS_FAILED 2 /* connect confirm & reset confirm */ 58 #define LLC_STATUS_IMPOSSIBLE 3 /* connect confirm */
|
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/ |
D | Kconfig | 17 Connect-IB cards by Mellanox Technologies. 138 bool "Mellanox Technologies IPsec Connect-X support" 145 Build IPsec support for the Connect-X family of network cards by Mellanox 148 IPsec support for the Connect-X family. 179 bool "Mellanox Technologies TLS Connect-X support" 188 Build TLS support for the Connect-X family of network cards by Mellanox
|
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath6kl/ |
D | init.c | 213 * it sends a new connect event 281 /* connect to a service */ 293 ath6kl_err("failed to connect to %s service status:%d\n", in ath6kl_connectservice() 326 struct htc_service_connect_req connect; in ath6kl_init_service_ep() local 328 memset(&connect, 0, sizeof(connect)); in ath6kl_init_service_ep() 331 connect.ep_cb.tx_comp_multi = ath6kl_tx_complete; in ath6kl_init_service_ep() 332 connect.ep_cb.rx = ath6kl_rx; in ath6kl_init_service_ep() 333 connect.ep_cb.rx_refill = ath6kl_rx_refill; in ath6kl_init_service_ep() 334 connect.ep_cb.tx_full = ath6kl_tx_queue_full; in ath6kl_init_service_ep() 340 connect.max_txq_depth = MAX_DEFAULT_SEND_QUEUE_DEPTH; in ath6kl_init_service_ep() [all …]
|
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath9k/ |
D | wmi.c | 255 struct htc_service_connreq connect; in ath9k_wmi_connect() local 260 memset(&connect, 0, sizeof(connect)); in ath9k_wmi_connect() 262 connect.ep_callbacks.priv = wmi; in ath9k_wmi_connect() 263 connect.ep_callbacks.tx = ath9k_wmi_ctrl_tx; in ath9k_wmi_connect() 264 connect.ep_callbacks.rx = ath9k_wmi_ctrl_rx; in ath9k_wmi_connect() 265 connect.service_id = WMI_CONTROL_SVC; in ath9k_wmi_connect() 267 ret = htc_connect_service(htc, &connect, &wmi->ctrl_epid); in ath9k_wmi_connect()
|
/kernel/linux/linux-5.10/Documentation/admin-guide/media/ |
D | dvb-usb-ttusb2-cardlist.rst | 19 * - Technotrend TT-connect CT-3650 21 * - Technotrend TT-connect S-2400 23 * - Technotrend TT-connect S-2400 (8kB EEPROM)
|
/kernel/linux/linux-5.10/include/net/caif/ |
D | caif_dev.h | 30 * @sockaddr: Socket address to connect. 34 * @param: Connect Request parameters (CAIF_SO_REQ_PARAM). 49 * caif_connect_client - Connect a client to CAIF Core Stack. 51 * to connect on the Modem. 62 * function will receive information about connect/disconnect responses,
|
/kernel/linux/linux-5.10/Documentation/hwmon/ |
D | ntc_thermistor.rst | 46 1. connect = NTC_CONNECTED_POSITIVE, pullup_ohm > 0:: 58 2. connect = NTC_CONNECTED_POSITIVE, pullup_ohm = 0 (not-connected):: 70 3. connect = NTC_CONNECTED_GROUND, pulldown_ohm > 0:: 82 4. connect = NTC_CONNECTED_GROUND, pulldown_ohm = 0 (not-connected):: 95 pulldown_ohm, and connect should be provided. When none of the four models
|
/kernel/linux/linux-5.10/drivers/net/appletalk/ |
D | Kconfig | 11 wish to connect to it, say Y. You will need to use the netatalk package 20 General information about how to connect Linux, Windows machines and 39 connect to the AppleTalk network, say Y. 46 This allows you to use the AppleTalk PC card to connect to LocalTalk 57 This allows you to use COPS AppleTalk cards to connect to LocalTalk
|