Lines Matching refs:custom
240 wpa_driver_wext_event_wireless_custom(void *ctx, char *custom) in wpa_driver_wext_event_wireless_custom() argument
245 custom); in wpa_driver_wext_event_wireless_custom()
249 if (os_strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) { in wpa_driver_wext_event_wireless_custom()
251 os_strstr(custom, " unicast ") != NULL; in wpa_driver_wext_event_wireless_custom()
254 } else if (os_strncmp(custom, "ASSOCINFO(ReqIEs=", 17) == 0) { in wpa_driver_wext_event_wireless_custom()
259 spos = custom + 17; in wpa_driver_wext_event_wireless_custom()
300 } else if (os_strncmp(custom, "STKSTART.request=", 17) == 0) { in wpa_driver_wext_event_wireless_custom()
301 if (hwaddr_aton(custom + 17, data.stkstart.peer)) { in wpa_driver_wext_event_wireless_custom()
303 "STKSTART.request '%s'", custom + 17); in wpa_driver_wext_event_wireless_custom()
309 } else if (os_strncmp(custom, "STOP", 4) == 0) { in wpa_driver_wext_event_wireless_custom()
311 } else if (os_strncmp(custom, "START", 5) == 0) { in wpa_driver_wext_event_wireless_custom()
313 } else if (os_strncmp(custom, "HANG", 4) == 0) { in wpa_driver_wext_event_wireless_custom()
442 char *pos, *end, *custom, *buf; in wpa_driver_wext_event_wireless() local
456 custom = pos + IW_EV_POINT_LEN; in wpa_driver_wext_event_wireless()
470 custom += IW_EV_POINT_OFF; in wpa_driver_wext_event_wireless()
506 if (custom + iwe->u.data.length > end) { in wpa_driver_wext_event_wireless()
512 drv->ctx, custom, iwe->u.data.length); in wpa_driver_wext_event_wireless()
515 if (custom + iwe->u.data.length > end) { in wpa_driver_wext_event_wireless()
523 os_memcpy(buf, custom, iwe->u.data.length); in wpa_driver_wext_event_wireless()
536 if (custom + iwe->u.data.length > end) { in wpa_driver_wext_event_wireless()
542 drv, custom, iwe->u.data.length); in wpa_driver_wext_event_wireless()
545 if (custom + iwe->u.data.length > end) { in wpa_driver_wext_event_wireless()
551 drv, custom, iwe->u.data.length); in wpa_driver_wext_event_wireless()
554 if (custom + iwe->u.data.length > end) { in wpa_driver_wext_event_wireless()
560 drv, custom, iwe->u.data.length); in wpa_driver_wext_event_wireless()
1137 struct wext_scan_data *res, char *custom, in wext_get_scan_ssid() argument
1141 if (custom + ssid_len > end) in wext_get_scan_ssid()
1146 os_memcpy(res->ssid, custom, ssid_len); in wext_get_scan_ssid()
1232 char *custom = pos + IW_EV_LCP_LEN; in wext_get_scan_rate() local
1237 if (custom + clen > end) in wext_get_scan_rate()
1242 os_memcpy(&p, custom, sizeof(struct iw_param)); in wext_get_scan_rate()
1246 custom += sizeof(struct iw_param); in wext_get_scan_rate()
1257 struct wext_scan_data *res, char *custom, in wext_get_scan_iwevgenie() argument
1266 gpos = genie = custom; in wext_get_scan_iwevgenie()
1283 struct wext_scan_data *res, char *custom, in wext_get_scan_custom() argument
1290 if (custom + clen > end) in wext_get_scan_custom()
1293 if (clen > 7 && os_strncmp(custom, "wpa_ie=", 7) == 0) { in wext_get_scan_custom()
1296 spos = custom + 7; in wext_get_scan_custom()
1297 bytes = custom + clen - spos; in wext_get_scan_custom()
1308 } else if (clen > 7 && os_strncmp(custom, "rsn_ie=", 7) == 0) { in wext_get_scan_custom()
1311 spos = custom + 7; in wext_get_scan_custom()
1312 bytes = custom + clen - spos; in wext_get_scan_custom()
1323 } else if (clen > 4 && os_strncmp(custom, "tsf=", 4) == 0) { in wext_get_scan_custom()
1327 spos = custom + 4; in wext_get_scan_custom()
1328 bytes = custom + clen - spos; in wext_get_scan_custom()
1431 char *pos, *end, *custom; in wpa_driver_wext_get_scan_results() local
1458 custom = pos + IW_EV_POINT_LEN; in wpa_driver_wext_get_scan_results()
1467 custom += IW_EV_POINT_OFF; in wpa_driver_wext_get_scan_results()
1484 wext_get_scan_ssid(iwe, &data, custom, end); in wpa_driver_wext_get_scan_results()
1499 wext_get_scan_iwevgenie(iwe, &data, custom, end); in wpa_driver_wext_get_scan_results()
1502 wext_get_scan_custom(iwe, &data, custom, end); in wpa_driver_wext_get_scan_results()