Home | History | Annotate | Download | only in drivers

Lines Matching defs:iwe

937 	struct iw_event iwe_buf, *iwe = &iwe_buf;
948 iwe->cmd, iwe->len);
949 if (iwe->len <= IW_EV_LCP_LEN)
954 (iwe->cmd == IWEVMICHAELMICFAILURE ||
955 iwe->cmd == IWEVCUSTOM)) {
966 switch (iwe->cmd) {
969 (u8 *) iwe->u.addr.sa_data);
972 madwifi_new_sta(drv, (u8 *) iwe->u.addr.sa_data);
975 if (custom + iwe->u.data.length > end)
977 buf = malloc(iwe->u.data.length + 1);
980 memcpy(buf, custom, iwe->u.data.length);
981 buf[iwe->u.data.length] = '\0';
987 pos += iwe->len;