Lines Matching refs:wpa_ie
332 wpa_parse_wpa_ie_wpa(struct wpa_supplicant *wpa_s, uint8_t *wpa_ie, in wpa_parse_wpa_ie_wpa() argument
357 hdr = (struct wpa_ie_hdr *)wpa_ie; in wpa_parse_wpa_ie_wpa()
553 wpa_parse_wpa_ie(struct wpa_supplicant *wpa_s, uint8_t *wpa_ie, in wpa_parse_wpa_ie() argument
556 if (wpa_ie_len >= 1 && wpa_ie[0] == RSN_INFO_ELEM) in wpa_parse_wpa_ie()
557 return (wpa_parse_wpa_ie_rsn(wpa_s, wpa_ie, wpa_ie_len, data)); in wpa_parse_wpa_ie()
559 return (wpa_parse_wpa_ie_wpa(wpa_s, wpa_ie, wpa_ie_len, data)); in wpa_parse_wpa_ie()
563 wpa_gen_wpa_ie_wpa(struct wpa_supplicant *wpa_s, uint8_t *wpa_ie) in wpa_gen_wpa_ie_wpa() argument
568 hdr = (struct wpa_ie_hdr *)wpa_ie; in wpa_gen_wpa_ie_wpa()
622 hdr->len = (pos - wpa_ie) - 2; in wpa_gen_wpa_ie_wpa()
624 return (pos - wpa_ie); in wpa_gen_wpa_ie_wpa()
702 wpa_gen_wpa_ie(struct wpa_supplicant *wpa_s, uint8_t *wpa_ie) in wpa_gen_wpa_ie() argument
705 return (wpa_gen_wpa_ie_rsn(wpa_s, wpa_ie)); in wpa_gen_wpa_ie()
707 return (wpa_gen_wpa_ie_wpa(wpa_s, wpa_ie)); in wpa_gen_wpa_ie()
881 uint8_t buf[8], wpa_ie_buf[80], *wpa_ie, *pmkid = NULL; in wpa_supplicant_process_1_of_4() local
925 wpa_ie = wpa_ie_buf; in wpa_supplicant_process_1_of_4()
926 wpa_ie_len = wpa_gen_wpa_ie(wpa_s, wpa_ie); in wpa_supplicant_process_1_of_4()
932 wpa_hexdump(MSG_DEBUG, "WPA: WPA IE for msg 2/4", wpa_ie, wpa_ie_len); in wpa_supplicant_process_1_of_4()
959 (void) memcpy(reply + 1, wpa_ie, wpa_ie_len); in wpa_supplicant_process_1_of_4()