Lines Matching refs:cur_network

544 		     pmlmepriv->cur_network.join_res) ||  in OnProbeReq()
599 update_network(&(pmlmepriv->cur_network.network), pbss, padapter, true); in OnBeacon()
600 rtw_get_bcn_info(&(pmlmepriv->cur_network)); in OnBeacon()
2126 struct wlan_bssid_ex *cur_network = &(pmlmeinfo->network); in issue_beacon() local
2150 memcpy(pwlanhdr->addr3, get_my_bssid(cur_network), ETH_ALEN); in issue_beacon()
2163 memcpy(pframe, cur_network->ies, cur_network->ie_length); in issue_beacon()
2165 cur_network->ie_length-_BEACON_IE_OFFSET_, in issue_beacon()
2167 pframe += (cur_network->ie_length+len_diff); in issue_beacon()
2168 pattrib->pktlen += (cur_network->ie_length+len_diff); in issue_beacon()
2198 memcpy(pframe, (unsigned char *)(rtw_get_beacon_interval_from_ie(cur_network->ies)), 2); in issue_beacon()
2205 memcpy(pframe, (unsigned char *)(rtw_get_capability_from_ie(cur_network->ies)), 2); in issue_beacon()
2211 …pframe = rtw_set_ie(pframe, WLAN_EID_SSID, cur_network->ssid.ssid_length, cur_network->ssid.ssid, … in issue_beacon()
2214 rate_len = rtw_get_rateset_len(cur_network->supported_rates); in issue_beacon()
2215 …pframe = rtw_set_ie(pframe, WLAN_EID_SUPP_RATES, ((rate_len > 8) ? 8 : rate_len), cur_network->sup… in issue_beacon()
2218 …pframe = rtw_set_ie(pframe, WLAN_EID_DS_PARAMS, 1, (unsigned char *)&(cur_network->configuration.d… in issue_beacon()
2236 …pframe = rtw_set_ie(pframe, WLAN_EID_EXT_SUPP_RATES, (rate_len - 8), (cur_network->supported_rates… in issue_beacon()
2274 struct wlan_bssid_ex *cur_network = &(pmlmeinfo->network); in issue_probersp() local
2294 bssid = cur_network->mac_address; in issue_probersp()
2311 if (cur_network->ie_length > MAX_IE_SZ) in issue_probersp()
2315 …pwps_ie = rtw_get_wps_ie(cur_network->ies+_FIXED_IE_LENGTH_, cur_network->ie_length-_FIXED_IE_LENG… in issue_probersp()
2322 wps_offset = (uint)(pwps_ie - cur_network->ies); in issue_probersp()
2326 remainder_ielen = cur_network->ie_length - wps_offset - wps_ielen; in issue_probersp()
2328 memcpy(pframe, cur_network->ies, wps_offset); in issue_probersp()
2345 memcpy(pframe, cur_network->ies, cur_network->ie_length); in issue_probersp()
2346 pframe += cur_network->ie_length; in issue_probersp()
2347 pattrib->pktlen += cur_network->ie_length; in issue_probersp()
2365 ssid_ielen_diff = cur_network->ssid.ssid_length - ssid_ielen; in issue_probersp()
2367 if (ssid_ie && cur_network->ssid.ssid_length) { in issue_probersp()
2383 *(ssid_ie+1) = cur_network->ssid.ssid_length; in issue_probersp()
2384 memcpy(ssid_ie+2, cur_network->ssid.ssid, cur_network->ssid.ssid_length); in issue_probersp()
2398 memcpy(pframe, (unsigned char *)(rtw_get_beacon_interval_from_ie(cur_network->ies)), 2); in issue_probersp()
2405 memcpy(pframe, (unsigned char *)(rtw_get_capability_from_ie(cur_network->ies)), 2); in issue_probersp()
2413 …pframe = rtw_set_ie(pframe, WLAN_EID_SSID, cur_network->ssid.ssid_length, cur_network->ssid.ssid, … in issue_probersp()
2416 rate_len = rtw_get_rateset_len(cur_network->supported_rates); in issue_probersp()
2417 …pframe = rtw_set_ie(pframe, WLAN_EID_SUPP_RATES, ((rate_len > 8) ? 8 : rate_len), cur_network->sup… in issue_probersp()
2420 …pframe = rtw_set_ie(pframe, WLAN_EID_DS_PARAMS, 1, (unsigned char *)&(cur_network->configuration.d… in issue_probersp()
2437 …pframe = rtw_set_ie(pframe, WLAN_EID_EXT_SUPP_RATES, (rate_len - 8), (cur_network->supported_rates… in issue_probersp()
4808 struct wlan_bssid_ex *cur_network = &(pmlmeinfo->network); in mlmeext_joinbss_event_callback() local
4832 rtw_hal_set_hwreg(padapter, HW_VAR_BASIC_RATE, cur_network->supported_rates); in mlmeext_joinbss_event_callback()
4849 psta = rtw_get_stainfo(pstapriv, cur_network->mac_address); in mlmeext_joinbss_event_callback()