/freebsd/contrib/wpa/src/ap/ |
H A D | sta_info.c | 44 struct sta_info *sta); 50 static int ap_sta_remove(struct hostapd_data *hapd, struct sta_info *sta); 54 int (*cb)(struct hostapd_data *hapd, struct sta_info *sta, in ap_for_each_sta() argument 58 struct sta_info *sta; in ap_for_each_sta() local 60 for (sta = hapd->sta_list; sta; sta = sta->next) { in ap_for_each_sta() 61 if (cb(hapd, sta, ctx)) in ap_for_each_sta() 69 struct sta_info * ap_get_sta(struct hostapd_data *hapd, const u8 *sta) in ap_get_sta() argument 73 s = hapd->sta_hash[STA_HASH(sta)]; in ap_get_sta() 74 while (s != NULL && os_memcmp(s->addr, sta, 6) != 0) in ap_get_sta() 83 struct sta_info *sta; in ap_get_sta_p2p() local [all …]
|
H A D | accounting.c | 31 struct sta_info *sta); 35 struct sta_info *sta, in accounting_msg() argument 59 if (sta) { in accounting_msg() 72 val = ieee802_1x_get_identity(sta->eapol_sm, &len); in accounting_msg() 75 if (!val && sta->identity) { in accounting_msg() 76 val = (u8 *) sta->identity; in accounting_msg() 77 len = os_strlen(sta->identity); in accounting_msg() 84 MAC2STR(sta->addr)); in accounting_msg() 96 if (add_common_radius_attr(hapd, hapd->conf->radius_acct_req_attr, sta, in accounting_msg() 100 if (sta && add_sqlite_radius_attr(hapd, sta, msg, 1) < 0) in accounting_msg() [all …]
|
H A D | ap_mlme.c | 54 struct sta_info *sta) in mlme_authenticate_indication() argument 56 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_MLME, in mlme_authenticate_indication() 59 MAC2STR(sta->addr), mlme_auth_alg_str(sta->auth_alg)); in mlme_authenticate_indication() 60 if (sta->auth_alg != WLAN_AUTH_FT && in mlme_authenticate_indication() 61 sta->auth_alg != WLAN_AUTH_FILS_SK && in mlme_authenticate_indication() 62 sta->auth_alg != WLAN_AUTH_FILS_SK_PFS && in mlme_authenticate_indication() 63 sta->auth_alg != WLAN_AUTH_FILS_PK && in mlme_authenticate_indication() 64 !(sta->flags & WLAN_STA_MFP)) in mlme_authenticate_indication() 65 mlme_deletekeys_request(hapd, sta); in mlme_authenticate_indication() 66 ap_sta_clear_disconnect_timeouts(hapd, sta); in mlme_authenticate_indication() [all …]
|
H A D | ieee802_11.c | 66 struct sta_info *sta, u16 *resp, 77 struct sta_info *sta, u16 status, 88 struct sta_info *sta, int reassoc); 348 static u16 auth_shared_key(struct hostapd_data *hapd, struct sta_info *sta, in auth_shared_key() argument 352 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211, in auth_shared_key() 358 if (!sta->challenge) { in auth_shared_key() 362 sta->challenge = os_zalloc(WLAN_AUTH_CHALLENGE_LEN); in auth_shared_key() 363 if (sta->challenge == NULL) in auth_shared_key() 367 os_free(sta->challenge); in auth_shared_key() 368 sta->challenge = NULL; in auth_shared_key() [all …]
|
H A D | ieee802_1x.c | 47 struct sta_info *sta, int success, 51 static void ieee802_1x_send(struct hostapd_data *hapd, struct sta_info *sta, in ieee802_1x_send() argument 79 if (wpa_auth_pairwise_set(sta->wpa_sm)) in ieee802_1x_send() 90 MAC2STR(sta->addr), hex); in ieee802_1x_send() 95 if (sta->flags & WLAN_STA_PREAUTH) { in ieee802_1x_send() 96 rsn_preauth_send(hapd, sta, buf, len); in ieee802_1x_send() 104 hapd, sta->addr, buf, len, in ieee802_1x_send() 105 encrypt, hostapd_sta_flags_to_drv(sta->flags), link_id); in ieee802_1x_send() 113 struct sta_info *sta, in ieee802_1x_set_authorized() argument 119 if (sta->flags & WLAN_STA_PREAUTH) in ieee802_1x_set_authorized() [all …]
|
H A D | drv_callbacks.c | 50 struct sta_info *sta) in hostapd_notify_assoc_fils_finish() argument 59 __func__, MAC2STR(sta->addr)); in hostapd_notify_assoc_fils_finish() 60 eloop_cancel_timeout(fils_hlp_timeout, hapd, sta); in hostapd_notify_assoc_fils_finish() 61 if (!sta->fils_pending_assoc_req) in hostapd_notify_assoc_fils_finish() 64 if (ieee802_11_parse_elems(sta->fils_pending_assoc_req, in hostapd_notify_assoc_fils_finish() 65 sta->fils_pending_assoc_req_len, &elems, in hostapd_notify_assoc_fils_finish() 73 p = hostapd_eid_assoc_fils_session(sta->wpa_sm, p, in hostapd_notify_assoc_fils_finish() 75 sta->fils_hlp_resp); in hostapd_notify_assoc_fils_finish() 77 reply_res = hostapd_sta_assoc(hapd, sta->addr, in hostapd_notify_assoc_fils_finish() 78 sta->fils_pending_assoc_is_reassoc, in hostapd_notify_assoc_fils_finish() [all …]
|
H A D | preauth_auth.c | 47 struct sta_info *sta; in rsn_preauth_receive() local 67 sta = ap_get_sta(hapd, ethhdr->h_source); in rsn_preauth_receive() 68 if (sta && (sta->flags & WLAN_STA_ASSOC)) { in rsn_preauth_receive() 70 "STA " MACSTR, MAC2STR(sta->addr)); in rsn_preauth_receive() 73 if (!sta && hdr->type == IEEE802_1X_TYPE_EAPOL_START) { in rsn_preauth_receive() 74 sta = ap_sta_add(hapd, ethhdr->h_source); in rsn_preauth_receive() 75 if (sta == NULL) in rsn_preauth_receive() 77 sta->flags = WLAN_STA_PREAUTH; in rsn_preauth_receive() 79 ieee802_1x_new_station(hapd, sta); in rsn_preauth_receive() 80 if (sta->eapol_sm == NULL) { in rsn_preauth_receive() [all …]
|
H A D | wpa_auth_glue.c | 289 struct sta_info *sta = ap_get_sta(hapd, addr); in hostapd_wpa_auth_set_eapol() local 290 if (sta == NULL) in hostapd_wpa_auth_set_eapol() 294 ieee802_1x_notify_port_enabled(sta->eapol_sm, value); in hostapd_wpa_auth_set_eapol() 297 ieee802_1x_notify_port_valid(sta->eapol_sm, value); in hostapd_wpa_auth_set_eapol() 300 ieee802_1x_set_sta_authorized(hapd, sta, value); in hostapd_wpa_auth_set_eapol() 303 if (sta->eapol_sm) in hostapd_wpa_auth_set_eapol() 304 sta->eapol_sm->portControl = Auto; in hostapd_wpa_auth_set_eapol() 307 if (sta->eapol_sm) in hostapd_wpa_auth_set_eapol() 308 sta->eapol_sm->keyRun = value; in hostapd_wpa_auth_set_eapol() 311 if (sta->eapol_sm) in hostapd_wpa_auth_set_eapol() [all …]
|
H A D | airtime_policy.c | 57 struct sta_info *sta, in set_new_backlog_time() argument 60 sta->backlogged_until = *now; in set_new_backlog_time() 61 sta->backlogged_until.usec += hapd->iconf->airtime_update_interval * in set_new_backlog_time() 63 while (sta->backlogged_until.usec >= 1000000) { in set_new_backlog_time() 64 sta->backlogged_until.sec++; in set_new_backlog_time() 65 sta->backlogged_until.usec -= 1000000; in set_new_backlog_time() 72 struct sta_info *sta; in count_backlogged_sta() local 79 for (sta = hapd->sta_list; sta; sta = sta->next) { in count_backlogged_sta() 80 if (hostapd_drv_read_sta_data(hapd, &data, sta->addr)) in count_backlogged_sta() 88 set_new_backlog_time(hapd, sta, &now); in count_backlogged_sta() [all …]
|
H A D | sta_info.h | 291 void (*fils_pending_cb)(struct hostapd_data *hapd, struct sta_info *sta, 358 int (*cb)(struct hostapd_data *hapd, struct sta_info *sta, 361 struct sta_info * ap_get_sta(struct hostapd_data *hapd, const u8 *sta); 363 void ap_sta_hash_add(struct hostapd_data *hapd, struct sta_info *sta); 364 void ap_free_sta(struct hostapd_data *hapd, struct sta_info *sta); 365 void ap_sta_ip6addr_del(struct hostapd_data *hapd, struct sta_info *sta); 368 void ap_sta_replenish_timeout(struct hostapd_data *hapd, struct sta_info *sta, 370 void ap_sta_session_timeout(struct hostapd_data *hapd, struct sta_info *sta, 373 struct sta_info *sta); 375 struct sta_info *sta, int warning_time); [all …]
|
H A D | mbo_ap.c | 19 void mbo_ap_sta_free(struct sta_info *sta) in mbo_ap_sta_free() argument 23 info = sta->non_pref_chan; in mbo_ap_sta_free() 24 sta->non_pref_chan = NULL; in mbo_ap_sta_free() 33 static void mbo_ap_parse_non_pref_chan(struct sta_info *sta, in mbo_ap_parse_non_pref_chan() argument 54 if (!sta->non_pref_chan) { in mbo_ap_parse_non_pref_chan() 55 sta->non_pref_chan = info; in mbo_ap_parse_non_pref_chan() 57 tmp = sta->non_pref_chan; in mbo_ap_parse_non_pref_chan() 78 MAC2STR(sta->addr), info->op_class, info->pref, in mbo_ap_parse_non_pref_chan() 83 void mbo_ap_check_sta_assoc(struct hostapd_data *hapd, struct sta_info *sta, in mbo_ap_check_sta_assoc() argument 98 sta->cell_capa = attr[2]; in mbo_ap_check_sta_assoc() [all …]
|
H A D | ctrl_iface_ap.c | 54 static int hostapd_get_sta_conn_time(struct sta_info *sta, in hostapd_get_sta_conn_time() argument 62 if (sta->connected_time.sec) { in hostapd_get_sta_conn_time() 64 os_reltime_age(&sta->connected_time, &age); in hostapd_get_sta_conn_time() 81 struct sta_info *sta, in hostapd_get_sta_info() argument 88 if (hostapd_drv_read_sta_data(hapd, &data, sta->addr) < 0) in hostapd_get_sta_info() 165 if ((sta->flags & WLAN_STA_VHT) && sta->vht_capabilities) { in hostapd_get_sta_info() 169 le_to_host16(sta->vht_capabilities-> in hostapd_get_sta_info() 171 le_to_host16(sta->vht_capabilities-> in hostapd_get_sta_info() 177 if ((sta->flags & WLAN_STA_HT) && sta->ht_capabilities) { in hostapd_get_sta_info() 179 sta->ht_capabilities-> in hostapd_get_sta_info() [all …]
|
H A D | fils_hlp.c | 36 static int fils_dhcp_request(struct hostapd_data *hapd, struct sta_info *sta, in fils_dhcp_request() argument 45 if (!sta->hlp_dhcp_discover) { in fils_dhcp_request() 53 pos = wpabuf_mhead(sta->hlp_dhcp_discover); in fils_dhcp_request() 54 end = pos + wpabuf_len(sta->hlp_dhcp_discover); in fils_dhcp_request() 91 sta->hlp_dhcp_discover->used = pos - (u8 *) dhcp; in fils_dhcp_request() 117 if (wpabuf_resize(&sta->hlp_dhcp_discover, in fils_dhcp_request() 121 wpabuf_put_data(sta->hlp_dhcp_discover, server_id, in fils_dhcp_request() 123 wpabuf_put_u8(sta->hlp_dhcp_discover, DHCP_OPT_REQUESTED_IP_ADDRESS); in fils_dhcp_request() 124 wpabuf_put_u8(sta->hlp_dhcp_discover, 4); in fils_dhcp_request() 125 wpabuf_put_data(sta->hlp_dhcp_discover, &dhcpoffer->your_ip, 4); in fils_dhcp_request() [all …]
|
H A D | ndisc_snoop.c | 41 static int sta_ip6addr_add(struct sta_info *sta, struct in6_addr *addr) in sta_ip6addr_add() argument 51 dl_list_add_tail(&sta->ip6addr, &ip6addr->list); in sta_ip6addr_add() 57 void sta_ip6addr_del(struct hostapd_data *hapd, struct sta_info *sta) in sta_ip6addr_del() argument 61 dl_list_for_each_safe(ip6addr, prev, &sta->ip6addr, struct ip6addr, in sta_ip6addr_del() 70 static int sta_has_ip6addr(struct sta_info *sta, struct in6_addr *addr) in sta_has_ip6addr() argument 74 dl_list_for_each(ip6addr, &sta->ip6addr, struct ip6addr, list) { in sta_has_ip6addr() 88 struct sta_info *sta; in ucast_to_stas() local 90 for (sta = hapd->sta_list; sta; sta = sta->next) { in ucast_to_stas() 91 if (!(sta->flags & WLAN_STA_AUTHORIZED)) in ucast_to_stas() 93 x_snoop_mcast_to_ucast_convert_send(hapd, sta, (u8 *) buf, len); in ucast_to_stas() [all …]
|
H A D | ieee802_11_ht.c | 217 struct sta_info *sta; in hostapd_2040_coex_action() local 269 sta = ap_get_sta(hapd, mgmt->sa); in hostapd_2040_coex_action() 270 if (!sta || !(sta->flags & WLAN_STA_ASSOC)) { in hostapd_2040_coex_action() 357 u16 copy_sta_ht_capab(struct hostapd_data *hapd, struct sta_info *sta, in copy_sta_ht_capab() argument 365 if (!ht_capab || !(sta->flags & WLAN_STA_WMM) || in copy_sta_ht_capab() 367 sta->flags &= ~WLAN_STA_HT; in copy_sta_ht_capab() 368 os_free(sta->ht_capabilities); in copy_sta_ht_capab() 369 sta->ht_capabilities = NULL; in copy_sta_ht_capab() 373 if (sta->ht_capabilities == NULL) { in copy_sta_ht_capab() 374 sta->ht_capabilities = in copy_sta_ht_capab() [all …]
|
H A D | ieee802_11_vht.c | 184 u16 copy_sta_vht_capab(struct hostapd_data *hapd, struct sta_info *sta, in copy_sta_vht_capab() argument 188 if (!vht_capab || !(sta->flags & WLAN_STA_WMM) || in copy_sta_vht_capab() 191 sta->flags &= ~WLAN_STA_VHT; in copy_sta_vht_capab() 192 os_free(sta->vht_capabilities); in copy_sta_vht_capab() 193 sta->vht_capabilities = NULL; in copy_sta_vht_capab() 197 if (sta->vht_capabilities == NULL) { in copy_sta_vht_capab() 198 sta->vht_capabilities = in copy_sta_vht_capab() 200 if (sta->vht_capabilities == NULL) in copy_sta_vht_capab() 204 sta->flags |= WLAN_STA_VHT; in copy_sta_vht_capab() 205 os_memcpy(sta->vht_capabilities, vht_capab, in copy_sta_vht_capab() [all …]
|
H A D | dhcp_snoop.c | 37 struct sta_info *sta; in handle_dhcp() local 93 for (sta = hapd->sta_list; sta; sta = sta->next) { in handle_dhcp() 94 if (!(sta->flags & WLAN_STA_AUTHORIZED)) in handle_dhcp() 96 x_snoop_mcast_to_ucast_convert_send(hapd, sta, in handle_dhcp() 107 sta = ap_get_sta(hapd, b->hw_addr); in handle_dhcp() 108 if (!sta) in handle_dhcp() 113 MAC2STR(sta->addr), in handle_dhcp() 117 if (sta->ipaddr == b->your_ip) in handle_dhcp() 120 if (sta->ipaddr != 0) { in handle_dhcp() 123 ipaddr_str(be_to_host32(sta->ipaddr))); in handle_dhcp() [all …]
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | mesh_mpm.c | 123 struct sta_info *sta, in copy_supp_rates() argument 128 MAC2STR(sta->addr)); in copy_supp_rates() 133 sizeof(sta->supported_rates)) { in copy_supp_rates() 136 " %d+%d", MAC2STR(sta->addr), elems->supp_rates_len, in copy_supp_rates() 141 sta->supported_rates_len = merge_byte_arrays( in copy_supp_rates() 142 sta->supported_rates, sizeof(sta->supported_rates), in copy_supp_rates() 173 struct sta_info *sta; in llid_in_use() local 176 for (sta = hapd->sta_list; sta; sta = sta->next) { in llid_in_use() 177 if (sta->my_lid == llid) in llid_in_use() 187 struct sta_info *sta) in mesh_mpm_init_link() argument [all …]
|
H A D | mesh_rsn.c | 34 struct sta_info *sta = user_data; in mesh_auth_timer() local 37 if (sta->sae->state != SAE_ACCEPTED) { in mesh_auth_timer() 40 MAC2STR(sta->addr), sta->sae_auth_retry); in mesh_auth_timer() 42 MAC2STR(sta->addr)); in mesh_auth_timer() 43 if (sta->sae_auth_retry < MESH_AUTH_RETRY) { in mesh_auth_timer() 44 mesh_rsn_auth_sae_sta(wpa_s, sta); in mesh_auth_timer() 48 if (sta->sae_auth_retry > MESH_AUTH_RETRY) { in mesh_auth_timer() 49 ap_free_sta(hapd, sta); in mesh_auth_timer() 54 wpa_mesh_set_plink_state(wpa_s, sta, PLINK_BLOCKED); in mesh_auth_timer() 55 sta->sae->state = SAE_NOTHING; in mesh_auth_timer() [all …]
|
/freebsd/contrib/netbsd-tests/lib/libc/sys/ |
H A D | t_kill.c | 56 int sta; in ATF_TC_BODY() local 73 (void)wait(&sta); in ATF_TC_BODY() 75 if (WIFSIGNALED(sta) == 0 || WTERMSIG(sta) != sig[i]) in ATF_TC_BODY() 88 int rv, sta; in ATF_TC_BODY() local 111 (void)wait(&sta); in ATF_TC_BODY() 113 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS) { in ATF_TC_BODY() 115 if (WEXITSTATUS(sta) == EINVAL) in ATF_TC_BODY() 118 if (WEXITSTATUS(sta) == ESRCH) in ATF_TC_BODY() 138 int sta; in ATF_TC_BODY() local 195 (void)waitpid(cpid, &sta, 0); in ATF_TC_BODY() [all …]
|
/freebsd/sys/contrib/dev/iwlwifi/mvm/ |
H A D | tdls.c | 21 struct ieee80211_sta *sta; in iwl_mvm_teardown_tdls_peers() local 28 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i], in iwl_mvm_teardown_tdls_peers() 30 if (!sta || IS_ERR(sta) || !sta->tdls) in iwl_mvm_teardown_tdls_peers() 33 mvmsta = iwl_mvm_sta_from_mac80211(sta); in iwl_mvm_teardown_tdls_peers() 34 ieee80211_tdls_oper_request(mvmsta->vif, sta->addr, in iwl_mvm_teardown_tdls_peers() 43 struct ieee80211_sta *sta; in iwl_mvm_tdls_sta_count() local 51 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i], in iwl_mvm_tdls_sta_count() 53 if (!sta || IS_ER in iwl_mvm_tdls_sta_count() 79 struct ieee80211_sta *sta; iwl_mvm_tdls_config() local 209 struct ieee80211_sta *sta; iwl_mvm_rx_tdls_notif() local 257 struct ieee80211_sta *sta = rcu_dereference_protected( iwl_mvm_tdls_check_action() local 340 struct ieee80211_sta *sta; iwl_mvm_tdls_config_channel_switch() local 458 struct ieee80211_sta *sta; iwl_mvm_tdls_ch_switch_work() local 505 iwl_mvm_tdls_channel_switch(struct ieee80211_hw * hw,struct ieee80211_vif * vif,struct ieee80211_sta * sta,u8 oper_class,struct cfg80211_chan_def * chandef,struct sk_buff * tmpl_skb,u32 ch_sw_tm_ie) iwl_mvm_tdls_channel_switch() argument 569 iwl_mvm_tdls_cancel_channel_switch(struct ieee80211_hw * hw,struct ieee80211_vif * vif,struct ieee80211_sta * sta) iwl_mvm_tdls_cancel_channel_switch() argument [all...] |
H A D | mld-sta.c | 7 #include "sta.h" 9 u32 iwl_mvm_sta_fw_id_mask(struct iwl_mvm *mvm, struct ieee80211_sta *sta, in iwl_mvm_sta_fw_id_mask() argument 18 if (!sta) in iwl_mvm_sta_fw_id_mask() 21 mvmsta = iwl_mvm_sta_from_mac80211(sta); in iwl_mvm_sta_fw_id_mask() 25 if (!sta->valid_links) in iwl_mvm_sta_fw_id_mask() 29 for_each_sta_active_link(vif, sta, link_sta, link_id) { in iwl_mvm_sta_fw_id_mask() 63 struct iwl_mvm_int_sta *sta, in iwl_mvm_mld_add_int_sta_to_fw() 71 cmd.sta_id = cpu_to_le32((u8)sta->sta_id); in iwl_mvm_mld_add_int_sta_to_fw() 75 cmd.station_type = cpu_to_le32(sta->type); in iwl_mvm_mld_add_int_sta_to_fw() 79 sta in iwl_mvm_mld_add_int_sta_to_fw() 60 iwl_mvm_mld_add_int_sta_to_fw(struct iwl_mvm * mvm,struct iwl_mvm_int_sta * sta,const u8 * addr,int link_id) iwl_mvm_mld_add_int_sta_to_fw() argument 116 iwl_mvm_add_aux_sta_to_fw(struct iwl_mvm * mvm,struct iwl_mvm_int_sta * sta,u32 lmac_id) iwl_mvm_add_aux_sta_to_fw() argument 137 iwl_mvm_mld_add_int_sta_with_queue(struct iwl_mvm * mvm,struct iwl_mvm_int_sta * sta,const u8 * addr,int link_id,u16 * queue,u8 tid,unsigned int * _wdg_timeout) iwl_mvm_mld_add_int_sta_with_queue() argument 428 iwl_mvm_mld_cfg_sta(struct iwl_mvm * mvm,struct ieee80211_sta * sta,struct ieee80211_vif * vif,struct ieee80211_link_sta * link_sta,struct ieee80211_bss_conf * link_conf,struct iwl_mvm_link_sta * mvm_link_sta) iwl_mvm_mld_cfg_sta() argument 549 iwl_mvm_mld_alloc_sta_link(struct iwl_mvm * mvm,struct ieee80211_vif * vif,struct ieee80211_sta * sta,unsigned int link_id) iwl_mvm_mld_alloc_sta_link() argument 582 iwl_mvm_mld_alloc_sta_links(struct iwl_mvm * mvm,struct ieee80211_vif * vif,struct ieee80211_sta * sta) iwl_mvm_mld_alloc_sta_links() argument 607 iwl_mvm_mld_set_ap_sta_id(struct ieee80211_sta * sta,struct iwl_mvm_vif_link_info * vif_link,struct iwl_mvm_link_sta * sta_link) iwl_mvm_mld_set_ap_sta_id() argument 624 iwl_mvm_alloc_sta_after_restart(struct iwl_mvm * mvm,struct ieee80211_vif * vif,struct ieee80211_sta * sta) iwl_mvm_alloc_sta_after_restart() argument 671 iwl_mvm_mld_add_sta(struct iwl_mvm * mvm,struct ieee80211_vif * vif,struct ieee80211_sta * sta) iwl_mvm_mld_add_sta() argument 742 iwl_mvm_mld_update_sta(struct iwl_mvm * mvm,struct ieee80211_vif * vif,struct ieee80211_sta * sta) iwl_mvm_mld_update_sta() argument 775 iwl_mvm_mld_disable_sta_queues(struct iwl_mvm * mvm,struct ieee80211_vif * vif,struct ieee80211_sta * sta) iwl_mvm_mld_disable_sta_queues() argument 801 iwl_mvm_mld_rm_sta(struct iwl_mvm * mvm,struct ieee80211_vif * vif,struct ieee80211_sta * sta) iwl_mvm_mld_rm_sta() argument 883 iwl_mvm_mld_sta_modify_disable_tx_ap(struct iwl_mvm * mvm,struct ieee80211_sta * sta,bool disable) iwl_mvm_mld_sta_modify_disable_tx_ap() argument 904 struct ieee80211_sta *sta; iwl_mvm_mld_modify_all_sta_disable_tx() local 928 iwl_mvm_mld_update_sta_queues(struct iwl_mvm * mvm,struct ieee80211_sta * sta,u32 old_sta_mask,u32 new_sta_mask) iwl_mvm_mld_update_sta_queues() argument 1011 iwl_mvm_mld_update_sta_resources(struct iwl_mvm * mvm,struct ieee80211_vif * vif,struct ieee80211_sta * sta,u32 old_sta_mask,u32 new_sta_mask) iwl_mvm_mld_update_sta_resources() argument 1034 iwl_mvm_mld_update_sta_links(struct iwl_mvm * mvm,struct ieee80211_vif * vif,struct ieee80211_sta * sta,u16 old_links,u16 new_links) iwl_mvm_mld_update_sta_links() argument [all...] |
H A D | sta.h | 128 * mac80211, such as broadcast station in AP / GO mode, or AUX sta for 397 * @sleeping: sta sleep transitions in power management 412 * @link: per link sta entries. For non-MLO only link[0] holds data. For MLO, 414 * sta is added. 462 iwl_mvm_sta_from_mac80211(struct ieee80211_sta *sta) 464 return (void *)sta->drv_priv; 484 * @sta: the STA in iwl_mvm_update_sta() 490 int iwl_mvm_sta_send_to_fw(struct iwl_mvm *mvm, struct ieee80211_sta *sta, 494 struct ieee80211_sta *sta, int sta_id, u8 sta_type); 497 struct ieee80211_sta *sta); 447 iwl_mvm_sta_from_mac80211(struct ieee80211_sta * sta) iwl_mvm_sta_from_mac80211() argument 486 iwl_mvm_update_sta(struct iwl_mvm * mvm,struct ieee80211_vif * vif,struct ieee80211_sta * sta) iwl_mvm_update_sta() argument [all...] |
/freebsd/contrib/netbsd-tests/lib/libc/stdlib/ |
H A D | t_exit.c | 60 int sta; in ATF_TC_BODY() local 75 (void)wait(&sta); in ATF_TC_BODY() 77 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS) in ATF_TC_BODY() 93 int sta; in ATF_TC_BODY() local 103 (void)wait(&sta); in ATF_TC_BODY() 105 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != EXIT_SUCCESS) in ATF_TC_BODY() 118 int i, sta; in ATF_TC_BODY() local 131 (void)wait(&sta); in ATF_TC_BODY() 133 if (WIFEXITED(sta) == 0 || WEXITSTATUS(sta) != i) in ATF_TC_BODY() 146 int sta, fd = -1; in ATF_TC_BODY() local [all …]
|
/freebsd/contrib/wpa/src/wps/ |
H A D | wps_er.c | 34 static void wps_er_sta_event(struct wps_context *wps, struct wps_er_sta *sta, in wps_er_sta_event() argument 44 ev->uuid = sta->uuid; in wps_er_sta_event() 45 ev->mac_addr = sta->addr; in wps_er_sta_event() 46 ev->m1_received = sta->m1_received; in wps_er_sta_event() 47 ev->config_methods = sta->config_methods; in wps_er_sta_event() 48 ev->dev_passwd_id = sta->dev_passwd_id; in wps_er_sta_event() 49 ev->pri_dev_type = sta->pri_dev_type; in wps_er_sta_event() 50 ev->dev_name = sta->dev_name; in wps_er_sta_event() 51 ev->manufacturer = sta->manufacturer; in wps_er_sta_event() 52 ev->model_name = sta->model_name; in wps_er_sta_event() [all …]
|