Lines Matching defs:iwe
555 struct iw_event iwe_buf, *iwe = &iwe_buf;
572 iwe->cmd, iwe->len);
573 if (iwe->len <= IW_EV_LCP_LEN)
578 if (drv->we_version_compiled > 18 && iwe->cmd == IWEVCUSTOM) {
589 switch (iwe->cmd) {
591 if (custom + iwe->u.data.length > end)
593 buf = os_malloc(iwe->u.data.length + 1);
596 os_memcpy(buf, custom, iwe->u.data.length);
597 buf[iwe->u.data.length] = '\0';
600 if ((iwe->u.data.flags == RT_ASSOC_EVENT_FLAG)
601 || (iwe->u.data.flags ==
603 (iwe->u.data.flags == RT_RESPIE_EVENT_FLAG)
604 || (iwe->u.data.flags ==
613 if (iwe->u.data.flags == RT_ASSOC_EVENT_FLAG) {
617 } else if (iwe->u.data.flags == RT_REQIE_EVENT_FLAG) {
621 os_malloc(iwe->u.data.length);
627 drv->assoc_req_ies_len = iwe->u.data.length;
629 iwe->u.data.length);
630 } else if (iwe->u.data.flags == RT_RESPIE_EVENT_FLAG) {
634 os_malloc(iwe->u.data.length);
642 drv->assoc_resp_ies_len = iwe->u.data.length;
644 iwe->u.data.length);
645 } else if (iwe->u.data.flags ==
684 } else if (iwe->u.data.flags == RT_DISASSOC_EVENT_FLAG)
690 } else if (iwe->u.data.flags == RT_PMKIDCAND_FLAG) {
695 iwe->u.data.length);
696 } else if (iwe->u.data.flags == RT_INTERFACE_DOWN) {
699 } else if (iwe->u.data.flags == RT_INTERFACE_UP) {
709 pos += iwe->len;