Home | History | Annotate | Download | only in drivers

Lines Matching defs:custom

294 wpa_driver_wext_event_wireless_custom(void *ctx, char *custom)
298 wpa_printf(MSG_MSGDUMP, "WEXT: Custom wireless event: '%s'",
299 custom);
303 if (os_strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) {
305 os_strstr(custom, " unicast ") != NULL;
308 } else if (os_strncmp(custom, "ASSOCINFO(ReqIEs=", 17) == 0) {
312 spos = custom + 17;
353 } else if (os_strncmp(custom, "STKSTART.request=", 17) == 0) {
354 if (hwaddr_aton(custom + 17, data.stkstart.peer)) {
356 "STKSTART.request '%s'", custom + 17);
362 } else if (os_strncmp(custom, "STOP", 4) == 0) {
364 } else if (os_strncmp(custom, "START", 5) == 0) {
366 } else if (os_strncmp(custom, "HANG", 4) == 0) {
495 char *pos, *end, *custom, *buf;
509 custom = pos + IW_EV_POINT_LEN;
523 custom += IW_EV_POINT_OFF;
560 if (custom + iwe->u.data.length > end) {
566 ctx, custom, iwe->u.data.length);
569 if (custom + iwe->u.data.length > end) {
577 os_memcpy(buf, custom, iwe->u.data.length);
589 if (custom + iwe->u.data.length > end) {
595 drv, custom, iwe->u.data.length);
598 if (custom + iwe->u.data.length > end) {
604 drv, custom, iwe->u.data.length);
607 if (custom + iwe->u.data.length > end) {
613 drv, custom, iwe->u.data.length);
1336 struct wext_scan_data *res, char *custom,
1340 if (custom + ssid_len > end)
1345 os_memcpy(res->ssid, custom, ssid_len);
1414 char *custom = pos + IW_EV_LCP_LEN;
1419 if (custom + clen > end)
1424 os_memcpy(&p, custom, sizeof(struct iw_param));
1428 custom += sizeof(struct iw_param);
1439 struct wext_scan_data *res, char *custom,
1448 gpos = genie = custom;
1465 struct wext_scan_data *res, char *custom,
1472 if (custom + clen > end)
1475 if (clen > 7 && os_strncmp(custom, "wpa_ie=", 7) == 0) {
1478 spos = custom + 7;
1479 bytes = custom + clen - spos;
1489 } else if (clen > 7 && os_strncmp(custom, "rsn_ie=", 7) == 0) {
1492 spos = custom + 7;
1493 bytes = custom + clen - spos;
1503 } else if (clen > 4 && os_strncmp(custom, "tsf=", 4) == 0) {
1507 spos = custom + 4;
1508 bytes = custom + clen - spos;
1608 char *pos, *end, *custom;
1644 custom = pos + IW_EV_POINT_LEN;
1653 custom += IW_EV_POINT_OFF;
1670 wext_get_scan_ssid(iwe, &data, custom, end);
1685 wext_get_scan_iwevgenie(iwe, &data, custom, end);
1688 wext_get_scan_custom(iwe, &data, custom, end);