Lines Matching refs:ie_setbuf
136 ie_setbuf_t ie_setbuf; in wl_cfg80211_clear_iw_ie() local
140 bzero(&ie_setbuf, sizeof(ie_setbuf_t)); in wl_cfg80211_clear_iw_ie()
142 ie_setbuf.ie_buffer.iecount = htod32(1); in wl_cfg80211_clear_iw_ie()
143 ie_setbuf.ie_buffer.ie_list[0].ie_data.id = DOT11_MNG_INTERWORKING_ID; in wl_cfg80211_clear_iw_ie()
144 ie_setbuf.ie_buffer.ie_list[0].ie_data.len = 0; in wl_cfg80211_clear_iw_ie()
146 return wldev_iovar_setbuf_bsscfg(ndev, "ie", &ie_setbuf, sizeof(ie_setbuf), in wl_cfg80211_clear_iw_ie()
156 ie_setbuf_t *ie_setbuf; in wl_cfg80211_add_iw_ie() local
208 ie_setbuf = (ie_setbuf_t *)MALLOCZ(cfg->osh, buf_len); in wl_cfg80211_add_iw_ie()
209 if (!ie_setbuf) { in wl_cfg80211_add_iw_ie()
213 strlcpy(ie_setbuf->cmd, "add", sizeof(ie_setbuf->cmd)); in wl_cfg80211_add_iw_ie()
216 ie_setbuf->ie_buffer.iecount = htod32(1); in wl_cfg80211_add_iw_ie()
218 ie_setbuf->ie_buffer.ie_list[0].pktflag = htod32(pktflag); in wl_cfg80211_add_iw_ie()
221 ie_setbuf->ie_buffer.ie_list[0].ie_data.id = DOT11_MNG_INTERWORKING_ID; in wl_cfg80211_add_iw_ie()
222 ie_setbuf->ie_buffer.ie_list[0].ie_data.len = data_len; in wl_cfg80211_add_iw_ie()
224 (void)memcpy_s((uchar *)&ie_setbuf->ie_buffer.ie_list[0].ie_data.data[0], in wl_cfg80211_add_iw_ie()
227 if ((err = wldev_iovar_setbuf_bsscfg(ndev, "ie", ie_setbuf, buf_len, in wl_cfg80211_add_iw_ie()
236 MFREE(cfg->osh, ie_setbuf, buf_len); in wl_cfg80211_add_iw_ie()