Lines Matching defs:custom
234 wpa_driver_wext_event_wireless_custom(void *ctx, char *custom)
239 custom);
243 if (os_strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) {
245 os_strstr(custom, " unicast ") != NULL;
248 } else if (os_strncmp(custom, "ASSOCINFO(ReqIEs=", 17) == 0) {
253 spos = custom + 17;
417 char *pos, *end, *custom, *buf;
431 custom = pos + IW_EV_POINT_LEN;
445 custom += IW_EV_POINT_OFF;
473 if (iwe->u.data.length > end - custom) {
479 drv->ctx, custom, iwe->u.data.length);
482 if (iwe->u.data.length > end - custom) {
487 buf = dup_binstr(custom, iwe->u.data.length);
501 if (iwe->u.data.length > end - custom) {
507 drv, custom, iwe->u.data.length);
510 if (iwe->u.data.length > end - custom) {
516 drv, custom, iwe->u.data.length);
519 if (iwe->u.data.length > end - custom) {
525 drv, custom, iwe->u.data.length);
1217 struct wext_scan_data *res, char *custom,
1221 if (ssid_len > end - custom)
1226 os_memcpy(res->ssid, custom, ssid_len);
1312 char *custom = pos + IW_EV_LCP_LEN;
1317 if (clen > (size_t) (end - custom))
1322 os_memcpy(&p, custom, sizeof(struct iw_param));
1326 custom += sizeof(struct iw_param);
1337 struct wext_scan_data *res, char *custom,
1346 gpos = genie = custom;
1363 struct wext_scan_data *res, char *custom,
1370 if (clen > (size_t) (end - custom))
1373 if (clen > 7 && os_strncmp(custom, "wpa_ie=", 7) == 0) {
1376 spos = custom + 7;
1377 bytes = custom + clen - spos;
1388 } else if (clen > 7 && os_strncmp(custom, "rsn_ie=", 7) == 0) {
1391 spos = custom + 7;
1392 bytes = custom + clen - spos;
1403 } else if (clen > 4 && os_strncmp(custom, "tsf=", 4) == 0) {
1407 spos = custom + 4;
1408 bytes = custom + clen - spos;
1511 char *pos, *end, *custom;
1538 custom = pos + IW_EV_POINT_LEN;
1547 custom += IW_EV_POINT_OFF;
1564 wext_get_scan_ssid(iwe, &data, custom, end);
1579 wext_get_scan_iwevgenie(iwe, &data, custom, end);
1582 wext_get_scan_custom(iwe, &data, custom, end);