Home | History | Annotate | Download | only in drivers

Lines Matching defs:iwe

1392 	struct iw_event iwe_buf, *iwe = &iwe_buf;
1403 iwe->cmd, iwe->len);
1404 if (iwe->len <= IW_EV_LCP_LEN || iwe->len > end - pos)
1409 (iwe->cmd == IWEVMICHAELMICFAILURE ||
1410 iwe->cmd == IWEVASSOCREQIE ||
1411 iwe->cmd == IWEVCUSTOM)) {
1422 switch (iwe->cmd) {
1425 (u8 *) iwe->u.addr.sa_data);
1428 atheros_new_sta(drv, (u8 *) iwe->u.addr.sa_data);
1436 if (iwe->u.data.length > end - custom)
1438 buf = os_malloc(iwe->u.data.length + 1);
1441 os_memcpy(buf, custom, iwe->u.data.length);
1442 buf[iwe->u.data.length] = '\0';
1444 if (iwe->u.data.flags != 0) {
1446 drv, (int) iwe->u.data.flags,
1450 drv, buf, buf + iwe->u.data.length);
1456 pos += iwe->len;