| /kernel/linux/linux-5.10/fs/hmdfs/comm/ |
| D | crypto.c | 70 tcp->connect->send_crypto_info.info.version = TLS_1_2_VERSION; in tls_crypto_info_init() 71 tcp->connect->send_crypto_info.info.cipher_type = in tls_crypto_info_init() 74 memcpy(tcp->connect->send_crypto_info.key, tcp->connect->send_key, in tls_crypto_info_init() 76 memcpy(tcp->connect->send_crypto_info.iv, in tls_crypto_info_init() 78 memcpy(tcp->connect->send_crypto_info.salt, in tls_crypto_info_init() 81 memcpy(tcp->connect->send_crypto_info.rec_seq, in tls_crypto_info_init() 86 KERNEL_SOCKPTR(&(tcp->connect->send_crypto_info)), in tls_crypto_info_init() 87 sizeof(tcp->connect->send_crypto_info)); in tls_crypto_info_init() 92 update_key(tcp->connect->recv_key, key_meterial, HKDF_TYPE_IV); in tls_crypto_info_init() 93 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() 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() 442 hmdfs_err("encypt callback NULL status %d", connect->status); in tcp_recvbuffer_cipher() [all …]
|
| D | transport.h | 46 struct connection *connect; member 68 void tcp_stop_connect(struct connection *connect); 73 int tcp_send_rekey_request(struct connection *connect);
|
| /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 | 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() 729 WARN_ON_ONCE(!wiphy_to_rdev(wdev->wiphy)->ops->connect); in __cfg80211_connect_result() 1136 wdev->wext.connect.ssid_len = 0; in __cfg80211_disconnected() 1174 struct cfg80211_connect_params *connect, in cfg80211_connect() argument 1189 (wdev->ssid_len != connect->ssid_len || in cfg80211_connect() [all …]
|
| D | wext-compat.c | 457 wdev->wext.connect.privacy = false; in __cfg80211_set_encryption() 919 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_OPEN_SYSTEM; in cfg80211_set_auth_alg() 924 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_SHARED_KEY; in cfg80211_set_auth_alg() 929 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_NETWORK_EAP; in cfg80211_set_auth_alg() 933 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC; in cfg80211_set_auth_alg() 951 wdev->wext.connect.crypto.wpa_versions &= in cfg80211_set_wpa_version() 955 wdev->wext.connect.crypto.wpa_versions |= in cfg80211_set_wpa_version() 959 wdev->wext.connect.crypto.wpa_versions |= in cfg80211_set_wpa_version() 968 wdev->wext.connect.crypto.cipher_group = in cfg80211_set_cipher_group() 971 wdev->wext.connect.crypto.cipher_group = in cfg80211_set_cipher_group() [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() 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() 248 gpiod_set_consumer_name(hub->connect, "usb3503 connect"); in usb3503_probe()
|
| /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/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/sound/core/seq/ |
| D | seq_dummy.c | 65 int connect; member 86 tmpev.source.port = p->connect; in dummy_input() 117 rec->connect = 0; in create_port() 179 rec1->connect = rec2->port; in register_client() 180 rec2->connect = rec1->port; in register_client()
|
| /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)
|
| D | dvb-usb-dvbsky-cardlist.rst | 31 * - TechnoTrend TT-connect CT2-4650 CI 33 * - TechnoTrend TT-connect CT2-4650 CI v1.1 35 * - TechnoTrend TT-connect S2-4650 CI
|
| /kernel/linux/linux-5.10/drivers/net/wireless/ath/ath9k/ |
| D | wmi.c | 259 struct htc_service_connreq connect; in ath9k_wmi_connect() local 264 memset(&connect, 0, sizeof(connect)); in ath9k_wmi_connect() 266 connect.ep_callbacks.priv = wmi; in ath9k_wmi_connect() 267 connect.ep_callbacks.tx = ath9k_wmi_ctrl_tx; in ath9k_wmi_connect() 268 connect.ep_callbacks.rx = ath9k_wmi_ctrl_rx; in ath9k_wmi_connect() 269 connect.service_id = WMI_CONTROL_SVC; in ath9k_wmi_connect() 271 ret = htc_connect_service(htc, &connect, &wmi->ctrl_epid); in ath9k_wmi_connect()
|
| /kernel/linux/linux-5.10/drivers/net/wireless/ath/ath6kl/ |
| D | init.c | 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() 341 connect.ep_cb.rx_refill_thresh = ATH6KL_MAX_RX_BUFFERS / 4; in ath6kl_init_service_ep() 342 if (!connect.ep_cb.rx_refill_thresh) in ath6kl_init_service_ep() 343 connect.ep_cb.rx_refill_thresh++; in ath6kl_init_service_ep() [all …]
|
| /kernel/linux/linux-5.10/drivers/misc/sgi-xp/ |
| D | xp_main.c | 82 xpc_set_interface(void (*connect) (int), in xpc_set_interface() 90 xpc_interface.connect = connect; in xpc_set_interface() 168 if (xpc_interface.connect) in xpc_connect() 169 xpc_interface.connect(ch_number); in xpc_connect()
|
| /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/hwmon/ |
| D | ntc_thermistor.c | 416 pdata->connect = NTC_CONNECTED_POSITIVE; in ntc_thermistor_parse_dt() 418 pdata->connect = NTC_CONNECTED_GROUND; in ntc_thermistor_parse_dt() 454 return (pdata->connect == NTC_CONNECTED_POSITIVE) ? in get_ohm_of_thermistor() 457 return (pdata->connect == NTC_CONNECTED_POSITIVE) ? in get_ohm_of_thermistor() 460 if (pdata->connect == NTC_CONNECTED_POSITIVE && puo == 0) in get_ohm_of_thermistor() 462 else if (pdata->connect == NTC_CONNECTED_GROUND && pdo == 0) in get_ohm_of_thermistor() 464 else if (pdata->connect == NTC_CONNECTED_POSITIVE) in get_ohm_of_thermistor() 669 (pdata->pullup_ohm == 0 && pdata->connect == in ntc_thermistor_probe() 671 (pdata->pulldown_ohm == 0 && pdata->connect == in ntc_thermistor_probe() 673 (pdata->connect != NTC_CONNECTED_POSITIVE && in ntc_thermistor_probe() [all …]
|
| /kernel/linux/linux-5.10/drivers/gpu/drm/msm/disp/mdp5/ |
| D | mdp5_cfg.c | 91 .connect = { 173 .connect = { 268 .connect = { 337 .connect = { 411 .connect = { 505 .connect = { 613 .connect = { 711 .connect = { 797 .connect = { 903 .connect = { [all …]
|
| /kernel/linux/linux-5.10/drivers/nvme/host/ |
| D | fabrics.c | 312 inv_sqe, cmd->connect.qid); in nvmf_log_connect_error() 336 cmd->connect.recfmt); in nvmf_log_connect_error() 380 cmd.connect.opcode = nvme_fabrics_command; in nvmf_connect_admin_queue() 381 cmd.connect.fctype = nvme_fabrics_type_connect; in nvmf_connect_admin_queue() 382 cmd.connect.qid = 0; in nvmf_connect_admin_queue() 383 cmd.connect.sqsize = cpu_to_le16(NVME_AQ_DEPTH - 1); in nvmf_connect_admin_queue() 389 cmd.connect.kato = ctrl->kato ? in nvmf_connect_admin_queue() 393 cmd.connect.cattr |= NVME_CONNECT_DISABLE_SQFLOW; in nvmf_connect_admin_queue() 450 cmd.connect.opcode = nvme_fabrics_command; in nvmf_connect_io_queue() 451 cmd.connect.fctype = nvme_fabrics_type_connect; in nvmf_connect_io_queue() [all …]
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/usb/ |
| D | usb3503.txt | 9 - connect-gpios: Should specify GPIO for connect. 32 connect-gpios = <&gpx3 0 1>;
|
| /kernel/linux/linux-5.10/Documentation/admin-guide/blockdev/drbd/ |
| D | drbd-connection-state-overview.dot | 21 label="try to connect, handshake" 52 // drbdadm [label="drbdadm connect"] 60 StandAlone -> Unconnected [ label="drbdadm connect" ]
|
| /kernel/linux/linux-5.10/sound/soc/atmel/ |
| D | tse850-pcm5142.c | 138 int connect = !!ucontrol->value.integer.value[0]; in tse850_put_mix() local 140 if (tse850->add_cache == connect) in tse850_put_mix() 147 gpiod_set_value_cansleep(tse850->add, connect); in tse850_put_mix() 148 tse850->add_cache = connect; in tse850_put_mix() 150 snd_soc_dapm_mixer_update_power(dapm, kctrl, connect, NULL); in tse850_put_mix()
|
| /kernel/linux/linux-5.10/drivers/usb/musb/ |
| D | musb_debugfs.c | 236 int connect; in musb_softconnect_show() local 244 connect = reg & MUSB_DEVCTL_SESSION ? 1 : 0; in musb_softconnect_show() 250 connect = -1; in musb_softconnect_show() 253 seq_printf(s, "%d\n", connect); in musb_softconnect_show()
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/interrupt-controller/ |
| D | hisilicon,mbigen-v2.txt | 12 Non-pci devices can connect to mbigen and generate the 15 The mbigen chip and devices connect to mbigen have the following properties: 69 Devices connect to mbigen required properties:
|
| /kernel/linux/build/test/kernel_ltp/syscalls/connect/ |
| D | BUILD.gn | 20 [ "//third_party/ltp/testcases/kernel/syscalls/connect/connect01.c" ] 26 [ "//third_party/ltp/testcases/kernel/syscalls/connect/connect02.c" ]
|