Home | History | Annotate | Download | only in drivers

Lines Matching defs:iwe

817 	struct iw_event iwe_buf, *iwe = &iwe_buf;
828 iwe->cmd, iwe->len);
829 if (iwe->len <= IW_EV_LCP_LEN || iwe->len > end - pos)
834 (iwe->cmd == IWEVMICHAELMICFAILURE ||
835 iwe->cmd == IWEVCUSTOM)) {
846 switch (iwe->cmd) {
848 if (iwe->u.data.length > end - custom)
850 buf = malloc(iwe->u.data.length + 1);
853 memcpy(buf, custom, iwe->u.data.length);
854 buf[iwe->u.data.length] = '\0';
860 pos += iwe->len;