Lines Matching refs:ie
130 struct uwb_ie_hdr *ie; in ASIE_show() local
142 ie = uwb_ie_next(&ptr, &len); in ASIE_show()
143 if (!ie) in ASIE_show()
145 if (ie->element_id == UWB_APP_SPEC_IE) { in ASIE_show()
146 result = uwb_ie_dump_hex(ie, in ASIE_show()
147 ie->length + sizeof(struct uwb_ie_hdr), in ASIE_show()
169 struct uwb_ie_hdr *ie; in ASIE_store() local
197 ie = (struct uwb_ie_hdr *)ie_buf; in ASIE_store()
198 if (ie->element_id != UWB_APP_SPEC_IE) { in ASIE_store()
200 __func__, ie->element_id); in ASIE_store()
205 if (ie->length > (ie_len - sizeof(struct uwb_ie_hdr))) in ASIE_store()
206 ie->length = ie_len - sizeof(struct uwb_ie_hdr); in ASIE_store()
214 result = uwb_rc_ie_add(rc, ie, ie->length + sizeof(struct uwb_ie_hdr)); in ASIE_store()