Home | History | Annotate | Download | only in drivers

Lines Matching defs:iwe

919 	struct iw_event iwe_buf, *iwe = &iwe_buf;
930 iwe->cmd, iwe->len);
931 if (iwe->len <= IW_EV_LCP_LEN)
936 (iwe->cmd == IWEVMICHAELMICFAILURE ||
937 iwe->cmd == IWEVCUSTOM)) {
948 switch (iwe->cmd) {
951 (u8 *) iwe->u.addr.sa_data);
954 madwifi_new_sta(drv, (u8 *) iwe->u.addr.sa_data);
957 if (custom + iwe->u.data.length > end)
959 buf = malloc(iwe->u.data.length + 1);
962 memcpy(buf, custom, iwe->u.data.length);
963 buf[iwe->u.data.length] = '\0';
969 pos += iwe->len;