Home | History | Annotate | Download | only in drivers

Lines Matching refs:iwe

1380 	struct iw_event iwe_buf, *iwe = &iwe_buf;
1391 iwe->cmd, iwe->len);
1392 if (iwe->len <= IW_EV_LCP_LEN)
1397 (iwe->cmd == IWEVMICHAELMICFAILURE ||
1398 iwe->cmd == IWEVASSOCREQIE ||
1399 iwe->cmd == IWEVCUSTOM)) {
1410 switch (iwe->cmd) {
1413 (u8 *) iwe->u.addr.sa_data);
1416 atheros_new_sta(drv, (u8 *) iwe->u.addr.sa_data);
1424 if (custom + iwe->u.data.length > end)
1426 buf = malloc(iwe->u.data.length + 1);
1429 memcpy(buf, custom, iwe->u.data.length);
1430 buf[iwe->u.data.length] = '\0';
1432 if (iwe->u.data.flags != 0) {
1434 drv, (int) iwe->u.data.flags,
1438 drv, buf, buf + iwe->u.data.length);
1444 pos += iwe->len;