Lines Matching defs:iwe
927 struct iw_event iwe_buf, *iwe = &iwe_buf;
938 iwe->cmd, iwe->len);
939 if (iwe->len <= IW_EV_LCP_LEN)
944 (iwe->cmd == IWEVMICHAELMICFAILURE ||
945 iwe->cmd == IWEVCUSTOM)) {
956 switch (iwe->cmd) {
959 (u8 *) iwe->u.addr.sa_data);
962 madwifi_new_sta(drv, (u8 *) iwe->u.addr.sa_data);
965 if (custom + iwe->u.data.length > end)
967 buf = malloc(iwe->u.data.length + 1);
970 memcpy(buf, custom, iwe->u.data.length);
971 buf[iwe->u.data.length] = '\0';
977 pos += iwe->len;