Home | History | Annotate | Download | only in drivers

Lines Matching defs:iwe

1486 	struct iw_event iwe_buf, *iwe = &iwe_buf;
1497 iwe->cmd, iwe->len);
1498 if (iwe->len <= IW_EV_LCP_LEN)
1503 (iwe->cmd == IWEVMICHAELMICFAILURE ||
1504 iwe->cmd == IWEVASSOCREQIE ||
1505 iwe->cmd == IWEVCUSTOM)) {
1516 switch (iwe->cmd) {
1519 (u8 *) iwe->u.addr.sa_data);
1522 atheros_new_sta(drv, (u8 *) iwe->u.addr.sa_data);
1530 if (custom + iwe->u.data.length > end)
1532 buf = malloc(iwe->u.data.length + 1);
1535 memcpy(buf, custom, iwe->u.data.length);
1536 buf[iwe->u.data.length] = '\0';
1538 if (iwe->u.data.flags != 0) {
1540 drv, (int) iwe->u.data.flags,
1544 drv, buf, buf + iwe->u.data.length);
1550 pos += iwe->len;