Lines Matching refs:pr_ie

144 			     struct mwifiex_ie *pr_ie, u16 *probe_idx,  in mwifiex_update_uap_custom_ie()  argument
166 if (pr_ie) { in mwifiex_update_uap_custom_ie()
168 le16_to_cpu(pr_ie->ie_length); in mwifiex_update_uap_custom_ie()
169 memcpy(pos, pr_ie, len); in mwifiex_update_uap_custom_ie()
191 if (pr_ie && le16_to_cpu(pr_ie->ie_index) == MWIFIEX_AUTO_IDX_MASK) { in mwifiex_update_uap_custom_ie()
194 len = sizeof(*pr_ie) - IEEE_MAX_IE_SIZE + in mwifiex_update_uap_custom_ie()
195 le16_to_cpu(pr_ie->ie_length); in mwifiex_update_uap_custom_ie()
252 struct mwifiex_ie *beacon_ie = NULL, *pr_ie = NULL, *ar_ie = NULL; in mwifiex_set_mgmt_beacon_data_ies() local
269 data->proberesp_ies_len, &pr_ie, in mwifiex_set_mgmt_beacon_data_ies()
273 data->proberesp_ies_len, &pr_ie, in mwifiex_set_mgmt_beacon_data_ies()
292 if (beacon_ie || pr_ie || ar_ie) { in mwifiex_set_mgmt_beacon_data_ies()
294 &beacon_idx, pr_ie, in mwifiex_set_mgmt_beacon_data_ies()
306 kfree(pr_ie); in mwifiex_set_mgmt_beacon_data_ies()
437 struct mwifiex_ie *beacon_ie = NULL, *pr_ie = NULL; in mwifiex_del_mgmt_ies() local
470 pr_ie = kmalloc(sizeof(struct mwifiex_ie), GFP_KERNEL); in mwifiex_del_mgmt_ies()
471 if (!pr_ie) { in mwifiex_del_mgmt_ies()
475 pr_ie->ie_index = cpu_to_le16(priv->proberesp_idx); in mwifiex_del_mgmt_ies()
476 pr_ie->mgmt_subtype_mask = cpu_to_le16(MWIFIEX_DELETE_MASK); in mwifiex_del_mgmt_ies()
477 pr_ie->ie_length = 0; in mwifiex_del_mgmt_ies()
490 if (beacon_ie || pr_ie || ar_ie) in mwifiex_del_mgmt_ies()
493 pr_ie, &priv->proberesp_idx, in mwifiex_del_mgmt_ies()
499 kfree(pr_ie); in mwifiex_del_mgmt_ies()