Lines Matching defs:iwe
1445 struct iw_event iwe_buf, *iwe = &iwe_buf;
1456 iwe->cmd, iwe->len);
1457 if (iwe->len <= IW_EV_LCP_LEN || iwe->len > end - pos)
1462 (iwe->cmd == IWEVMICHAELMICFAILURE ||
1463 iwe->cmd == IWEVASSOCREQIE ||
1464 iwe->cmd == IWEVCUSTOM)) {
1475 switch (iwe->cmd) {
1478 (u8 *) iwe->u.addr.sa_data);
1481 atheros_new_sta(drv, (u8 *) iwe->u.addr.sa_data);
1489 if (iwe->u.data.length > end - custom)
1491 buf = os_malloc(iwe->u.data.length + 1);
1494 os_memcpy(buf, custom, iwe->u.data.length);
1495 buf[iwe->u.data.length] = '\0';
1497 if (iwe->u.data.flags != 0) {
1499 drv, (int) iwe->u.data.flags,
1503 drv, buf, buf + iwe->u.data.length);
1509 pos += iwe->len;