• Home
  • Raw
  • Download

Lines Matching refs:custom

1178 				       char *custom, char *end)  in atheros_wireless_event_wireless_custom()  argument
1180 wpa_printf(MSG_DEBUG, "Custom wireless event: '%s'", custom); in atheros_wireless_event_wireless_custom()
1182 if (strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) { in atheros_wireless_event_wireless_custom()
1185 pos = strstr(custom, "addr="); in atheros_wireless_event_wireless_custom()
1205 } else if (strncmp(custom, "STA-TRAFFIC-STAT", 16) == 0) { in atheros_wireless_event_wireless_custom()
1208 key = custom; in atheros_wireless_event_wireless_custom()
1229 } else if (strncmp(custom, "PUSH-BUTTON.indication", 22) == 0) { in atheros_wireless_event_wireless_custom()
1238 } else if (strncmp(custom, "Manage.prob_req ", 16) == 0) { in atheros_wireless_event_wireless_custom()
1245 int len = atoi(custom + 16); in atheros_wireless_event_wireless_custom()
1246 if (len < 0 || custom + MGMT_FRAM_TAG_SIZE + len > end) { in atheros_wireless_event_wireless_custom()
1252 (u8 *) custom + MGMT_FRAM_TAG_SIZE, len); in atheros_wireless_event_wireless_custom()
1253 } else if (strncmp(custom, "Manage.assoc_req ", 17) == 0) { in atheros_wireless_event_wireless_custom()
1256 int len = atoi(custom + 17); in atheros_wireless_event_wireless_custom()
1257 if (len < 0 || custom + MGMT_FRAM_TAG_SIZE + len > end) { in atheros_wireless_event_wireless_custom()
1263 (u8 *) custom + MGMT_FRAM_TAG_SIZE, len); in atheros_wireless_event_wireless_custom()
1264 } else if (strncmp(custom, "Manage.action ", 14) == 0) { in atheros_wireless_event_wireless_custom()
1267 int len = atoi(custom + 14); in atheros_wireless_event_wireless_custom()
1268 if (len < 0 || custom + MGMT_FRAM_TAG_SIZE + len > end) { in atheros_wireless_event_wireless_custom()
1274 (u8 *) custom + MGMT_FRAM_TAG_SIZE, len); in atheros_wireless_event_wireless_custom()
1275 } else if (strncmp(custom, "Manage.auth ", 12) == 0) { in atheros_wireless_event_wireless_custom()
1278 int len = atoi(custom + 12); in atheros_wireless_event_wireless_custom()
1279 if (len < 0 || custom + MGMT_FRAM_TAG_SIZE + len > end) { in atheros_wireless_event_wireless_custom()
1285 (u8 *) custom + MGMT_FRAM_TAG_SIZE, len); in atheros_wireless_event_wireless_custom()
1381 char *pos, *end, *custom, *buf; in atheros_wireless_event_wireless() local
1395 custom = pos + IW_EV_POINT_LEN; in atheros_wireless_event_wireless()
1407 custom += IW_EV_POINT_OFF; in atheros_wireless_event_wireless()
1424 if (custom + iwe->u.data.length > end) in atheros_wireless_event_wireless()
1429 memcpy(buf, custom, iwe->u.data.length); in atheros_wireless_event_wireless()