Lines Matching refs:ie
133 struct uwb_ie_hdr *ie; in ASIE_show() local
145 ie = uwb_ie_next(&ptr, &len); in ASIE_show()
146 if (!ie) in ASIE_show()
148 if (ie->element_id == UWB_APP_SPEC_IE) { in ASIE_show()
149 result = uwb_ie_dump_hex(ie, in ASIE_show()
150 ie->length + sizeof(struct uwb_ie_hdr), in ASIE_show()
172 struct uwb_ie_hdr *ie; in ASIE_store() local
200 ie = (struct uwb_ie_hdr *)ie_buf; in ASIE_store()
201 if (ie->element_id != UWB_APP_SPEC_IE) { in ASIE_store()
203 __func__, ie->element_id); in ASIE_store()
208 if (ie->length > (ie_len - sizeof(struct uwb_ie_hdr))) in ASIE_store()
209 ie->length = ie_len - sizeof(struct uwb_ie_hdr); in ASIE_store()
217 result = uwb_rc_ie_add(rc, ie, ie->length + sizeof(struct uwb_ie_hdr)); in ASIE_store()