Lines Matching defs:iwe
1007 struct iw_event iwe_buf, *iwe = &iwe_buf;
1018 iwe->cmd, iwe->len);
1019 if (iwe->len <= IW_EV_LCP_LEN)
1024 (iwe->cmd == IWEVMICHAELMICFAILURE ||
1025 iwe->cmd == IWEVASSOCREQIE ||
1026 iwe->cmd == IWEVCUSTOM)) {
1037 switch (iwe->cmd) {
1040 (u8 *) iwe->u.addr.sa_data);
1043 atheros_new_sta(drv, (u8 *) iwe->u.addr.sa_data);
1051 if (custom + iwe->u.data.length > end)
1053 buf = malloc(iwe->u.data.length + 1);
1056 memcpy(buf, custom, iwe->u.data.length);
1057 buf[iwe->u.data.length] = '\0';
1059 drv, buf, buf + iwe->u.data.length);
1064 pos += iwe->len;