Home
last modified time | relevance | path

Searched refs:sta_ptr (Results 1 – 8 of 8) sorted by relevance

/hal_nxp-latest/mcux/middleware/wifi_nxp/wifidriver/incl/
Dmlan_11n.h107 sta_node *sta_ptr = MNULL; in is_station_11n_enabled() local
108 sta_ptr = wlan_get_station_entry(priv, mac); in is_station_11n_enabled()
109 if (sta_ptr != MNULL) in is_station_11n_enabled()
111 return (sta_ptr->is_11n_enabled) ? MTRUE : MFALSE; in is_station_11n_enabled()
126 sta_node *sta_ptr = MNULL; in get_station_max_amsdu_size() local
127 sta_ptr = wlan_get_station_entry(priv, mac); in get_station_max_amsdu_size()
128 if (sta_ptr != MNULL) in get_station_max_amsdu_size()
130 return sta_ptr->max_amsdu; in get_station_max_amsdu_size()
148 sta_node *sta_ptr = MNULL;
149 if ((sta_ptr = wlan_get_station_entry(priv, ptr->ra))) {
[all …]
Dmlan_11ac.h29 …lan_fill_tdls_vht_oprat_ie(mlan_private *priv, IEEEtypes_VHTOprat_t *vht_oprat, sta_node *sta_ptr);
Dmlan_main.h2883 void wlan_check_sta_capability(pmlan_private priv, pmlan_buffer pevent, sta_node *sta_ptr);
2908 sta_node *sta_ptr = MNULL;
2909 sta_ptr = wlan_get_station_entry(priv, ra);
2910 if (sta_ptr != MNULL)
2912 return sta_ptr->tx_pause;
/hal_nxp-latest/mcux/middleware/wifi_nxp/wifidriver/
Dmlan_uap_cmdevent.c706 sta_node *sta_ptr = MNULL; local
788 sta_ptr = wlan_add_station_entry(pmpriv, pkey->mac_addr);
789 if (sta_ptr)
792 sta_ptr->wapi_key_on = MTRUE;
935 void wlan_check_sta_capability(pmlan_private priv, pmlan_buffer pevent, sta_node *sta_ptr) argument
975 sta_ptr->is_11n_enabled = MTRUE;
977 sta_ptr->max_amsdu = MLAN_TX_DATA_BUF_SIZE_8K;
979 sta_ptr->max_amsdu = MLAN_TX_DATA_BUF_SIZE_4K;
1039 sta_node *sta_ptr = MNULL; local
1072 sta_ptr = wlan_get_station_entry(pmpriv, bss->param.sta_info.peer_mac);
[all …]
Dmlan_misc.c116 sta_node *sta_ptr; in wlan_get_station_entry() local
125 if (!(sta_ptr = (sta_node *)util_peek_list(priv->adapter->pmoal_handle, &priv->sta_list, in wlan_get_station_entry()
132 while (sta_ptr != (sta_node *)&priv->sta_list) in wlan_get_station_entry()
134 if (!__memcmp(priv->adapter, sta_ptr->mac_addr, mac, MLAN_MAC_ADDR_LENGTH)) in wlan_get_station_entry()
137 return sta_ptr; in wlan_get_station_entry()
139 sta_ptr = sta_ptr->pnext; in wlan_get_station_entry()
156 sta_node *sta_ptr = MNULL; in wlan_add_station_entry() local
162 sta_ptr = wlan_get_station_entry(priv, mac); in wlan_add_station_entry()
163 if (sta_ptr) in wlan_add_station_entry()
166 (t_u8 **)&sta_ptr)) in wlan_add_station_entry()
[all …]
Dmlan_11ac.c927 …wlan_fill_tdls_vht_oprat_ie(mlan_private *priv, IEEEtypes_VHTOprat_t *vht_oprat, sta_node *sta_ptr)
943 IEEEtypes_VHTCap_t *pvht_cap = &sta_ptr->vht_cap;
951 if(sta_ptr->ExtCap.ieee_hdr.element_id != EXT_CAPABILITY){
955 if(!ISSUPP_EXTCAP_TDLS_WIDER_BANDWIDTH(sta_ptr->ExtCap.ext_cap)){
984 if(ap_vht_cap && !ISSUPP_EXTCAP_TDLS_WIDER_BANDWIDTH(sta_ptr->ExtCap.ext_cap)){
Dmlan_glue.c4861 … void wrapper_wlan_check_sta_capability(pmlan_private priv, Event_Ext_t *pevent, sta_node *sta_ptr) in wrapper_wlan_check_sta_capability() argument
4917 sta_ptr->is_11n_enabled = MTRUE; in wrapper_wlan_check_sta_capability()
4920 sta_ptr->max_amsdu = MLAN_TX_DATA_BUF_SIZE_8K; in wrapper_wlan_check_sta_capability()
4924 sta_ptr->max_amsdu = MLAN_TX_DATA_BUF_SIZE_4K; in wrapper_wlan_check_sta_capability()
4939 sta_ptr->is_11ac_enabled = MTRUE; in wrapper_wlan_check_sta_capability()
4942 sta_ptr->max_amsdu = MLAN_TX_DATA_BUF_SIZE_12K; in wrapper_wlan_check_sta_capability()
4946 sta_ptr->max_amsdu = MLAN_TX_DATA_BUF_SIZE_8K; in wrapper_wlan_check_sta_capability()
4950 sta_ptr->max_amsdu = MLAN_TX_DATA_BUF_SIZE_4K; in wrapper_wlan_check_sta_capability()
4964 sta_ptr->is_11ax_enabled = MTRUE; in wrapper_wlan_check_sta_capability()
4965 (void)memcpy((void *)((t_u8 *)&sta_ptr->he_cap), (const void *)phe_cap, in wrapper_wlan_check_sta_capability()
[all …]
Dwifi.c2870 sta_ptr = wlan_add_station_entry(priv, pieee_pkt_hdr->addr2); in wlan_process_802dot11_mgmt_pkt2()
2871 if (sta_ptr) in wlan_process_802dot11_mgmt_pkt2()
2873 sta_ptr->capability = wlan_le16_to_cpu(mgmt->u.assoc_req.capab_info); in wlan_process_802dot11_mgmt_pkt2()
2891 wlan_check_sta_capability(priv, pmbuf, sta_ptr); in wlan_process_802dot11_mgmt_pkt2()