/Linux-v5.4/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() 728 WARN_ON_ONCE(!wiphy_to_rdev(wdev->wiphy)->ops->connect); in __cfg80211_connect_result() 1124 wdev->wext.connect.ssid_len = 0; in __cfg80211_disconnected() 1162 struct cfg80211_connect_params *connect, in cfg80211_connect() argument 1177 (wdev->ssid_len != connect->ssid_len || in cfg80211_connect() [all …]
|
D | wext-compat.c | 458 wdev->wext.connect.privacy = false; in __cfg80211_set_encryption() 920 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_OPEN_SYSTEM; in cfg80211_set_auth_alg() 925 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_SHARED_KEY; in cfg80211_set_auth_alg() 930 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_NETWORK_EAP; in cfg80211_set_auth_alg() 934 wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC; in cfg80211_set_auth_alg() 952 wdev->wext.connect.crypto.wpa_versions &= in cfg80211_set_wpa_version() 956 wdev->wext.connect.crypto.wpa_versions |= in cfg80211_set_wpa_version() 960 wdev->wext.connect.crypto.wpa_versions |= in cfg80211_set_wpa_version() 969 wdev->wext.connect.crypto.cipher_group = in cfg80211_set_cipher_group() 972 wdev->wext.connect.crypto.cipher_group = in cfg80211_set_cipher_group() [all …]
|
/Linux-v5.4/scripts/kconfig/ |
D | qconf.cc | 270 connect(this, SIGNAL(editingFinished()), SLOT(hide())); in ConfigLineEdit() 323 connect(this, SIGNAL(itemSelectionChanged(void)), in ConfigList() 333 connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings())); in ConfigList() 879 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent() 881 connect(parent(), SIGNAL(showNameChanged(bool)), in contextMenuEvent() 887 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent() 889 connect(parent(), SIGNAL(showRangeChanged(bool)), in contextMenuEvent() 895 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent() 897 connect(parent(), SIGNAL(showDataChanged(bool)), in contextMenuEvent() 1018 connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings())); in ConfigInfoView() [all …]
|
/Linux-v5.4/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()
|
/Linux-v5.4/drivers/net/wireless/ath/ath9k/ |
D | wmi.c | 253 struct htc_service_connreq connect; in ath9k_wmi_connect() local 258 memset(&connect, 0, sizeof(connect)); in ath9k_wmi_connect() 260 connect.ep_callbacks.priv = wmi; in ath9k_wmi_connect() 261 connect.ep_callbacks.tx = ath9k_wmi_ctrl_tx; in ath9k_wmi_connect() 262 connect.ep_callbacks.rx = ath9k_wmi_ctrl_rx; in ath9k_wmi_connect() 263 connect.service_id = WMI_CONTROL_SVC; in ath9k_wmi_connect() 265 ret = htc_connect_service(htc, &connect, &wmi->ctrl_epid); in ath9k_wmi_connect()
|
/Linux-v5.4/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 …]
|
/Linux-v5.4/drivers/misc/sgi-xp/ |
D | xp_main.c | 81 xpc_set_interface(void (*connect) (int), in xpc_set_interface() 89 xpc_interface.connect = connect; in xpc_set_interface() 167 if (xpc_interface.connect) in xpc_connect() 168 xpc_interface.connect(ch_number); in xpc_connect()
|
/Linux-v5.4/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
|
/Linux-v5.4/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 …]
|
/Linux-v5.4/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() 375 cmd.connect.opcode = nvme_fabrics_command; in nvmf_connect_admin_queue() 376 cmd.connect.fctype = nvme_fabrics_type_connect; in nvmf_connect_admin_queue() 377 cmd.connect.qid = 0; in nvmf_connect_admin_queue() 378 cmd.connect.sqsize = cpu_to_le16(NVME_AQ_DEPTH - 1); in nvmf_connect_admin_queue() 384 cmd.connect.kato = ctrl->kato ? in nvmf_connect_admin_queue() 388 cmd.connect.cattr |= NVME_CONNECT_DISABLE_SQFLOW; in nvmf_connect_admin_queue() 445 cmd.connect.opcode = nvme_fabrics_command; in nvmf_connect_io_queue() 446 cmd.connect.fctype = nvme_fabrics_type_connect; in nvmf_connect_io_queue() [all …]
|
/Linux-v5.4/drivers/gpu/drm/msm/disp/mdp5/ |
D | mdp5_cfg.c | 91 .connect = { 173 .connect = { 268 .connect = { 337 .connect = { 430 .connect = { 538 .connect = { 625 .connect = { 731 .connect = {
|
/Linux-v5.4/Documentation/devicetree/bindings/usb/ |
D | usb3503.txt | 9 - connect-gpios: Should specify GPIO for connect. 32 connect-gpios = <&gpx3 0 1>;
|
/Linux-v5.4/sound/soc/sof/ |
D | pm.c | 119 struct sof_ipc_pipe_comp_connect *connect; in sof_restore_pipelines() local 126 connect = sroute->private; in sof_restore_pipelines() 130 connect->hdr.cmd, in sof_restore_pipelines() 131 connect, sizeof(*connect), in sof_restore_pipelines()
|
/Linux-v5.4/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" ]
|
/Linux-v5.4/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()
|
/Linux-v5.4/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()
|
/Linux-v5.4/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:
|
/Linux-v5.4/include/xen/interface/io/ |
D | pvcalls.h | 54 } connect; member 96 } connect; member
|
/Linux-v5.4/drivers/media/radio/si470x/ |
D | Kconfig | 9 Say Y here if you want to connect this type of radio to your 35 Say Y here if you want to connect this type of radio to your 48 Say Y here if you want to connect this type of radio to your
|
/Linux-v5.4/Documentation/devicetree/bindings/net/ |
D | hisilicon-hns-nic.txt | 11 connect to 8 PHYs. Port 0 to 1 are both used for administration purpose. They 26 In Switch mode of DSAF, all 6 PHYs are taken as physical ports connect to a 27 LAN Switch while the CPU side assume itself have one single NIC connect to
|
/Linux-v5.4/drivers/nvme/target/ |
D | fabrics-cmd.c | 104 struct nvmf_connect_command *c = &req->cmd->connect; in nvmet_install_queue() 145 struct nvmf_connect_command *c = &req->cmd->connect; in nvmet_execute_admin_connect() 208 struct nvmf_connect_command *c = &req->cmd->connect; in nvmet_execute_io_connect() 285 if (cmd->connect.qid == 0) in nvmet_parse_connect_cmd()
|
/Linux-v5.4/include/video/ |
D | omapfb_dss.h | 438 int (*connect)(struct omap_dss_device *dssdev, member 457 int (*connect)(struct omap_dss_device *dssdev, member 476 int (*connect)(struct omap_dss_device *dssdev, member 493 int (*connect)(struct omap_dss_device *dssdev, member 518 int (*connect)(struct omap_dss_device *dssdev, member 542 int (*connect)(struct omap_dss_device *dssdev, member 693 int (*connect)(struct omap_dss_device *dssdev); member
|
/Linux-v5.4/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()
|
/Linux-v5.4/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
|