/third_party/wpa_supplicant/wpa_supplicant-2.9/src/rsn_supp/ |
D | wpa_ie.c | 359 struct wpa_eapol_ie_parse *ie) in wpa_parse_vendor_specific() argument 372 ie->wmm = &pos[2]; in wpa_parse_vendor_specific() 373 ie->wmm_len = pos[1]; in wpa_parse_vendor_specific() 375 ie->wmm, ie->wmm_len); in wpa_parse_vendor_specific() 377 ie->wmm = &pos[2]; in wpa_parse_vendor_specific() 378 ie->wmm_len = pos[1]; in wpa_parse_vendor_specific() 380 ie->wmm, ie->wmm_len); in wpa_parse_vendor_specific() 395 struct wpa_eapol_ie_parse *ie) in wpa_parse_generic() argument 404 ie->wpa_ie = pos; in wpa_parse_generic() 405 ie->wpa_ie_len = pos[1] + 2; in wpa_parse_generic() [all …]
|
D | wpa.c | 591 struct wpa_eapol_ie_parse ie; in wpa_supplicant_process_1_of_4() local 607 os_memset(&ie, 0, sizeof(ie)); in wpa_supplicant_process_1_of_4() 613 if (wpa_supplicant_parse_ies(key_data, key_data_len, &ie) < 0) in wpa_supplicant_process_1_of_4() 615 if (ie.pmkid) { in wpa_supplicant_process_1_of_4() 617 "Authenticator", ie.pmkid, PMKID_LEN); in wpa_supplicant_process_1_of_4() 621 res = wpa_supplicant_get_pmk(sm, src_addr, ie.pmkid); in wpa_supplicant_process_1_of_4() 1125 struct wpa_eapol_ie_parse *ie) in ieee80211w_set_keys() argument 1131 if (ie->igtk) { in ieee80211w_set_keys() 1136 if (ie->igtk_len != WPA_IGTK_KDE_PREFIX_LEN + len) in ieee80211w_set_keys() 1139 igtk = (const struct wpa_igtk_kde *) ie->igtk; in ieee80211w_set_keys() [all …]
|
/third_party/ntfs-3g/libntfs-3g/ |
D | index.c | 194 static leVCN *ntfs_ie_get_vcn_addr(INDEX_ENTRY *ie) in ntfs_ie_get_vcn_addr() argument 196 return (leVCN *)((u8 *)ie + le16_to_cpu(ie->length) - sizeof(leVCN)); in ntfs_ie_get_vcn_addr() 202 VCN ntfs_ie_get_vcn(INDEX_ENTRY *ie) in ntfs_ie_get_vcn() argument 204 return sle64_to_cpup(ntfs_ie_get_vcn_addr(ie)); in ntfs_ie_get_vcn() 212 static INDEX_ENTRY *ntfs_ie_get_next(INDEX_ENTRY *ie) in ntfs_ie_get_next() argument 214 return (INDEX_ENTRY *)((char *)ie + le16_to_cpu(ie->length)); in ntfs_ie_get_next() 223 static int ntfs_ie_end(INDEX_ENTRY *ie) in ntfs_ie_end() argument 225 return ie->ie_flags & INDEX_ENTRY_END || !ie->length; in ntfs_ie_end() 231 static INDEX_ENTRY *ntfs_ie_get_last(INDEX_ENTRY *ie, char *ies_end) in ntfs_ie_get_last() argument 235 while ((char *)ie < ies_end && !ntfs_ie_end(ie)) in ntfs_ie_get_last() [all …]
|
D | dir.c | 258 INDEX_ENTRY *ie; in ntfs_inode_lookup_by_name() local 299 ie = (INDEX_ENTRY*)((u8*)&ir->index + in ntfs_inode_lookup_by_name() 305 for (;; ie = (INDEX_ENTRY*)((u8*)ie + le16_to_cpu(ie->length))) { in ntfs_inode_lookup_by_name() 307 if ((u8*)ie < (u8*)ctx->mrec || (u8*)ie + in ntfs_inode_lookup_by_name() 309 (u8*)ie + le16_to_cpu(ie->length) > in ntfs_inode_lookup_by_name() 320 if (ie->ie_flags & INDEX_ENTRY_END) in ntfs_inode_lookup_by_name() 324 if (ntfs_index_entry_inconsistent(ie, COLLATION_FILE_NAME, in ntfs_inode_lookup_by_name() 334 (ntfschar*)&ie->key.file_name.file_name, in ntfs_inode_lookup_by_name() 335 ie->key.file_name.file_name_length, in ntfs_inode_lookup_by_name() 352 mref = le64_to_cpu(ie->indexed_file); in ntfs_inode_lookup_by_name() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
D | wifi_display.c | 41 struct wpabuf *ie; in wifi_display_get_wfd_ie() local 54 ie = wpabuf_alloc(len); in wifi_display_get_wfd_ie() 55 if (ie == NULL) in wifi_display_get_wfd_ie() 60 wpabuf_put_buf(ie, global->wfd_subelem[i]); in wifi_display_get_wfd_ie() 63 return ie; in wifi_display_get_wfd_ie() 69 struct wpabuf *ie, *buf; in wifi_display_update_wfd_ie() local 174 ie = wifi_display_encaps(buf); in wifi_display_update_wfd_ie() 175 wpa_hexdump_buf(MSG_DEBUG, "WFD: WFD IE for Beacon", ie); in wifi_display_update_wfd_ie() 176 p2p_set_wfd_ie_beacon(global->p2p, ie); in wifi_display_update_wfd_ie() 178 ie = wifi_display_encaps(buf); in wifi_display_update_wfd_ie() [all …]
|
D | bss.c | 37 const u8 *ie = wpa_bss_get_ie(bss, WLAN_EID_INTERWORKING); in wpa_bss_set_hessid() local 38 if (ie == NULL || (ie[1] != 7 && ie[1] != 9)) { in wpa_bss_set_hessid() 42 if (ie[1] == 7) in wpa_bss_set_hessid() 43 os_memcpy(bss->hessid, ie + 3, ETH_ALEN); in wpa_bss_set_hessid() 45 os_memcpy(bss->hessid, ie + 5, ETH_ALEN); in wpa_bss_set_hessid() 475 const struct wpa_scan_res *new_res, u32 ie) in are_ies_equal() argument 482 switch (ie) { in are_ies_equal() 484 old_ie = wpa_bss_get_vendor_ie(old, ie); in are_ies_equal() 485 new_ie = wpa_scan_get_vendor_ie(new_res, ie); in are_ies_equal() 489 old_ie_buff = wpa_bss_get_vendor_ie_multi(old, ie); in are_ies_equal() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | wifi_display.c | 41 struct wpabuf *ie; in wifi_display_get_wfd_ie() local 54 ie = wpabuf_alloc(len); in wifi_display_get_wfd_ie() 55 if (ie == NULL) in wifi_display_get_wfd_ie() 60 wpabuf_put_buf(ie, global->wfd_subelem[i]); in wifi_display_get_wfd_ie() 63 return ie; in wifi_display_get_wfd_ie() 69 struct wpabuf *ie, *buf; in wifi_display_update_wfd_ie() local 174 ie = wifi_display_encaps(buf); in wifi_display_update_wfd_ie() 175 wpa_hexdump_buf(MSG_DEBUG, "WFD: WFD IE for Beacon", ie); in wifi_display_update_wfd_ie() 176 p2p_set_wfd_ie_beacon(global->p2p, ie); in wifi_display_update_wfd_ie() 178 ie = wifi_display_encaps(buf); in wifi_display_update_wfd_ie() [all …]
|
D | bss.c | 25 const u8 *ie = wpa_bss_get_ie(bss, WLAN_EID_INTERWORKING); in wpa_bss_set_hessid() local 26 if (ie == NULL || (ie[1] != 7 && ie[1] != 9)) { in wpa_bss_set_hessid() 30 if (ie[1] == 7) in wpa_bss_set_hessid() 31 os_memcpy(bss->hessid, ie + 3, ETH_ALEN); in wpa_bss_set_hessid() 33 os_memcpy(bss->hessid, ie + 5, ETH_ALEN); in wpa_bss_set_hessid() 516 const struct wpa_scan_res *new_res, u32 ie) in are_ies_equal() argument 523 switch (ie) { in are_ies_equal() 525 old_ie = wpa_bss_get_vendor_ie(old, ie); in are_ies_equal() 526 new_ie = wpa_scan_get_vendor_ie(new_res, ie); in are_ies_equal() 530 old_ie_buff = wpa_bss_get_vendor_ie_multi(old, ie); in are_ies_equal() [all …]
|
D | events.c | 366 struct wpa_ie_data ie; in wpa_find_assoc_pmkid() local 378 if (wpa_sm_parse_own_wpa_ie(wpa_s->wpa, &ie) < 0 || in wpa_find_assoc_pmkid() 379 ie.pmkid == NULL) in wpa_find_assoc_pmkid() 382 for (i = 0; i < ie.num_pmkid; i++) { in wpa_find_assoc_pmkid() 384 ie.pmkid + i * PMKID_LEN, in wpa_find_assoc_pmkid() 623 struct wpa_ie_data ie; in wpa_supplicant_ssid_bss_match() local 676 if (wpa_parse_wpa_ie(rsn_ie, 2 + rsn_ie[1], &ie)) { in wpa_supplicant_ssid_bss_match() 682 if (!ie.has_pairwise) in wpa_supplicant_ssid_bss_match() 683 ie.pairwise_cipher = wpa_default_rsn_cipher(bss->freq); in wpa_supplicant_ssid_bss_match() 684 if (!ie.has_group) in wpa_supplicant_ssid_bss_match() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/ |
D | wps.c | 420 struct wpabuf *ie; in wps_build_assoc_req_ie() local 425 ie = wpabuf_alloc(100); in wps_build_assoc_req_ie() 426 if (ie == NULL) in wps_build_assoc_req_ie() 429 wpabuf_put_u8(ie, WLAN_EID_VENDOR_SPECIFIC); in wps_build_assoc_req_ie() 430 len = wpabuf_put(ie, 1); in wps_build_assoc_req_ie() 431 wpabuf_put_be32(ie, WPS_DEV_OUI_WFA); in wps_build_assoc_req_ie() 433 if (wps_build_version(ie) || in wps_build_assoc_req_ie() 434 wps_build_req_type(ie, req_type) || in wps_build_assoc_req_ie() 435 wps_build_wfa_ext(ie, 0, NULL, 0, 0)) { in wps_build_assoc_req_ie() 436 wpabuf_free(ie); in wps_build_assoc_req_ie() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/ |
D | wps.c | 420 struct wpabuf *ie; in wps_build_assoc_req_ie() local 425 ie = wpabuf_alloc(100); in wps_build_assoc_req_ie() 426 if (ie == NULL) in wps_build_assoc_req_ie() 429 wpabuf_put_u8(ie, WLAN_EID_VENDOR_SPECIFIC); in wps_build_assoc_req_ie() 430 len = wpabuf_put(ie, 1); in wps_build_assoc_req_ie() 431 wpabuf_put_be32(ie, WPS_DEV_OUI_WFA); in wps_build_assoc_req_ie() 433 if (wps_build_version(ie) || in wps_build_assoc_req_ie() 434 wps_build_req_type(ie, req_type) || in wps_build_assoc_req_ie() 435 wps_build_wfa_ext(ie, 0, NULL, 0, 0)) { in wps_build_assoc_req_ie() 436 wpabuf_free(ie); in wps_build_assoc_req_ie() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
D | taxonomy.c | 103 const u8 *ie; in ie_to_string() local 120 ie = wpabuf_head(ies); in ie_to_string() 127 id = *ie++; in ie_to_string() 128 elen = *ie++; in ie_to_string() 136 if (WPA_GET_BE32(ie) == WPS_IE_VENDOR_TYPE) { in ie_to_string() 139 const u8 *data = &ie[4]; in ie_to_string() 152 sep, id, ie[0], ie[1], ie[2], ie[3]); in ie_to_string() 158 WPA_GET_LE16(ie)); in ie_to_string() 164 ",htagg:%02hx", (u16) ie[2]); in ie_to_string() 170 (u16) WPA_GET_LE32(ie + 3)); in ie_to_string() [all …]
|
D | rrm.c | 99 const u8 *pos, *ie, *end; in hostapd_handle_radio_msmt_report() local 106 while ((ie = get_ie(pos, end - pos, WLAN_EID_MEASURE_REPORT))) { in hostapd_handle_radio_msmt_report() 107 if (ie[1] < 3) { in hostapd_handle_radio_msmt_report() 112 rep_mode = ie[3]; in hostapd_handle_radio_msmt_report() 114 rep_mode, ie[4]); in hostapd_handle_radio_msmt_report() 116 switch (ie[4]) { in hostapd_handle_radio_msmt_report() 118 hostapd_handle_lci_report(hapd, token, ie + 2, ie[1]); in hostapd_handle_radio_msmt_report() 121 hostapd_handle_range_report(hapd, token, ie + 2, ie[1]); in hostapd_handle_radio_msmt_report() 125 rep_mode, ie + 2, ie[1]); in hostapd_handle_radio_msmt_report() 130 ie[4]); in hostapd_handle_radio_msmt_report() [all …]
|
D | ap_rrm.c | 99 const u8 *pos, *ie, *end; in hostapd_handle_radio_msmt_report() local 106 while ((ie = get_ie(pos, end - pos, WLAN_EID_MEASURE_REPORT))) { in hostapd_handle_radio_msmt_report() 107 if (ie[1] < 3) { in hostapd_handle_radio_msmt_report() 112 rep_mode = ie[3]; in hostapd_handle_radio_msmt_report() 114 rep_mode, ie[4]); in hostapd_handle_radio_msmt_report() 116 switch (ie[4]) { in hostapd_handle_radio_msmt_report() 118 hostapd_handle_lci_report(hapd, token, ie + 2, ie[1]); in hostapd_handle_radio_msmt_report() 121 hostapd_handle_range_report(hapd, token, ie + 2, ie[1]); in hostapd_handle_radio_msmt_report() 125 rep_mode, ie + 2, ie[1]); in hostapd_handle_radio_msmt_report() 130 ie[4]); in hostapd_handle_radio_msmt_report() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
D | taxonomy.c | 103 const u8 *ie; in ie_to_string() local 120 ie = wpabuf_head(ies); in ie_to_string() 127 id = *ie++; in ie_to_string() 128 elen = *ie++; in ie_to_string() 136 if (WPA_GET_BE32(ie) == WPS_IE_VENDOR_TYPE) { in ie_to_string() 139 const u8 *data = &ie[4]; in ie_to_string() 152 sep, id, ie[0], ie[1], ie[2], ie[3]); in ie_to_string() 158 WPA_GET_LE16(ie)); in ie_to_string() 164 ",htagg:%02hx", (u16) ie[2]); in ie_to_string() 170 (u16) WPA_GET_LE32(ie + 3)); in ie_to_string() [all …]
|
D | ap_rrm.c | 99 const u8 *pos, *ie, *end; in hostapd_handle_radio_msmt_report() local 106 while ((ie = get_ie(pos, end - pos, WLAN_EID_MEASURE_REPORT))) { in hostapd_handle_radio_msmt_report() 107 if (ie[1] < 3) { in hostapd_handle_radio_msmt_report() 112 rep_mode = ie[3]; in hostapd_handle_radio_msmt_report() 114 rep_mode, ie[4]); in hostapd_handle_radio_msmt_report() 116 switch (ie[4]) { in hostapd_handle_radio_msmt_report() 118 hostapd_handle_lci_report(hapd, token, ie + 2, ie[1]); in hostapd_handle_radio_msmt_report() 121 hostapd_handle_range_report(hapd, token, ie + 2, ie[1]); in hostapd_handle_radio_msmt_report() 125 rep_mode, ie + 2, ie[1]); in hostapd_handle_radio_msmt_report() 130 ie[4]); in hostapd_handle_radio_msmt_report() [all …]
|
D | wpa_auth_ie.c | 986 struct wpa_eapol_ie_parse *ie) in wpa_parse_generic() argument 995 ie->wpa_ie = pos; in wpa_parse_generic() 996 ie->wpa_ie_len = pos[1] + 2; in wpa_parse_generic() 1001 ie->osen = pos; in wpa_parse_generic() 1002 ie->osen_len = pos[1] + 2; in wpa_parse_generic() 1009 ie->pmkid = pos + 2 + RSN_SELECTOR_LEN; in wpa_parse_generic() 1015 ie->gtk = pos + 2 + RSN_SELECTOR_LEN; in wpa_parse_generic() 1016 ie->gtk_len = pos[1] - RSN_SELECTOR_LEN; in wpa_parse_generic() 1022 ie->mac_addr = pos + 2 + RSN_SELECTOR_LEN; in wpa_parse_generic() 1023 ie->mac_addr_len = pos[1] - RSN_SELECTOR_LEN; in wpa_parse_generic() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | DAGDeltaAlgorithm.cpp | 127 for (changeset_ty::const_iterator it = S.begin(), ie = S.end(); it != ie; in ExecuteOneTest() 184 ie = Changes.end(); it != ie; ++it) { in DAGDeltaAlgorithmImpl() local 189 ie = Dependencies.end(); it != ie; ++it) { in DAGDeltaAlgorithmImpl() local 196 ie = Changes.end(); it != ie; ++it) in DAGDeltaAlgorithmImpl() local 208 ie = pred_end(Change); it != ie; ++it) { in DAGDeltaAlgorithmImpl() local 217 ie = Changes.end(); it != ie; ++it) in DAGDeltaAlgorithmImpl() local 220 ie = Changes.end(); it != ie; ++it) in DAGDeltaAlgorithmImpl() local 229 for (changeset_ty::const_iterator it = Changes.begin(), ie = Changes.end(); in DAGDeltaAlgorithmImpl() 230 it != ie; ++it) { in DAGDeltaAlgorithmImpl() 250 ie = Roots.end(); in DAGDeltaAlgorithmImpl() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/p2p/ |
D | p2p_group.c | 127 static void p2p_client_info(struct wpabuf *ie, struct p2p_group_member *m) in p2p_client_info() argument 131 if (wpabuf_tailroom(ie) < wpabuf_len(m->client_info) + 1) in p2p_client_info() 133 wpabuf_put_buf(ie, m->client_info); in p2p_client_info() 138 struct wpabuf *ie) in p2p_group_add_common_ies() argument 160 p2p_buf_add_capability(ie, dev_capab, group_capab); in p2p_group_add_common_ies() 164 static void p2p_group_add_noa(struct wpabuf *ie, struct wpabuf *noa) in p2p_group_add_noa() argument 169 wpabuf_put_u8(ie, P2P_ATTR_NOTICE_OF_ABSENCE); in p2p_group_add_noa() 170 wpabuf_put_le16(ie, wpabuf_len(noa)); in p2p_group_add_noa() 171 wpabuf_put_buf(ie, noa); in p2p_group_add_noa() 177 struct wpabuf *ie; in p2p_group_encaps_probe_resp() local [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/p2p/ |
D | p2p_group.c | 127 static void p2p_client_info(struct wpabuf *ie, struct p2p_group_member *m) in p2p_client_info() argument 131 if (wpabuf_tailroom(ie) < wpabuf_len(m->client_info) + 1) in p2p_client_info() 133 wpabuf_put_buf(ie, m->client_info); in p2p_client_info() 138 struct wpabuf *ie) in p2p_group_add_common_ies() argument 160 p2p_buf_add_capability(ie, dev_capab, group_capab); in p2p_group_add_common_ies() 164 static void p2p_group_add_noa(struct wpabuf *ie, struct wpabuf *noa) in p2p_group_add_noa() argument 169 wpabuf_put_u8(ie, P2P_ATTR_NOTICE_OF_ABSENCE); in p2p_group_add_noa() 170 wpabuf_put_le16(ie, wpabuf_len(noa)); in p2p_group_add_noa() 171 wpabuf_put_buf(ie, noa); in p2p_group_add_noa() 177 struct wpabuf *ie; in p2p_group_encaps_probe_resp() local [all …]
|
/third_party/lame/misc/ |
D | Lame.vbs | 68 set ie=WScript.CreateObject("InternetExplorer.Application", "ie_") 69 ie.navigate(path & "lameGUI.html") 72 loop until ie.ReadyState=4 'wait for GUI 74 ie.Width=640 75 ie.Height=600 76 ie.Toolbar=false 77 ie.Statusbar=false 78 ie.visible=true 81 set document=ie.document 151 ie.Quit
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/ |
D | wpa_hal_event.c | 55 event.assoc_info.req_ies = staInfo->ie; in WifiWpaEventNewStaProcess() 60 WpaMemFree(staInfo->ie); in WifiWpaEventNewStaProcess() 187 rc = memcpy_s(&res[1], scanResult->ieLen, scanResult->ie, scanResult->ieLen); in WifiWpaEventScanResultProcess() 200 WpaMemFree(scanResult->ie); in WifiWpaEventScanResultProcess() 212 WpaMemFree(scanResult->ie); in WifiWpaEventScanResultProcess() 273 event.disassoc_info.ie = result->ie; in WifiWpaEventDisconnectProcess() 277 WpaMemFree(result->ie); in WifiWpaEventDisconnectProcess() 344 uint8_t *ie = NULL; in WifiWpaNewStaProcess() local 353 ie = (uint8_t *)os_zalloc(staInfo->ieLen); in WifiWpaNewStaProcess() 354 if (ie == NULL) { in WifiWpaNewStaProcess() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/ |
D | wpa_hal_event.c | 54 event.assoc_info.req_ies = staInfo->ie; in WifiWpaEventNewStaProcess() 59 WpaMemFree(staInfo->ie); in WifiWpaEventNewStaProcess() 186 rc = memcpy_s(&res[1], scanResult->ieLen, scanResult->ie, scanResult->ieLen); in WifiWpaEventScanResultProcess() 199 WpaMemFree(scanResult->ie); in WifiWpaEventScanResultProcess() 211 WpaMemFree(scanResult->ie); in WifiWpaEventScanResultProcess() 272 event.disassoc_info.ie = result->ie; in WifiWpaEventDisconnectProcess() 276 WpaMemFree(result->ie); in WifiWpaEventDisconnectProcess() 343 uint8_t *ie = NULL; in WifiWpaNewStaProcess() local 352 ie = (uint8_t *)os_zalloc(staInfo->ieLen); in WifiWpaNewStaProcess() 353 if (ie == NULL) { in WifiWpaNewStaProcess() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/rsn_supp/ |
D | wpa.c | 682 struct wpa_eapol_ie_parse ie; in wpa_supplicant_process_1_of_4() local 708 os_memset(&ie, 0, sizeof(ie)); in wpa_supplicant_process_1_of_4() 714 if (wpa_supplicant_parse_ies(key_data, key_data_len, &ie) < 0) in wpa_supplicant_process_1_of_4() 716 if (ie.pmkid) { in wpa_supplicant_process_1_of_4() 718 "Authenticator", ie.pmkid, PMKID_LEN); in wpa_supplicant_process_1_of_4() 722 res = wpa_supplicant_get_pmk(sm, src_addr, ie.pmkid); in wpa_supplicant_process_1_of_4() 1344 struct wpa_eapol_ie_parse *ie) in ieee80211w_set_keys() argument 1352 if (ie->igtk) { in ieee80211w_set_keys() 1356 if (ie->igtk_len != WPA_IGTK_KDE_PREFIX_LEN + len) in ieee80211w_set_keys() 1359 igtk = (const struct wpa_igtk_kde *) ie->igtk; in ieee80211w_set_keys() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
D | wpa_common.c | 924 static int wpa_ft_parse_ftie(const u8 *ie, size_t ie_len, in wpa_ft_parse_ftie() argument 929 parse->ftie = ie; in wpa_ft_parse_ftie() 932 pos = ie + (use_sha384 ? sizeof(struct rsn_ftie_sha384) : in wpa_ft_parse_ftie() 934 end = ie + ie_len; in wpa_ft_parse_ftie() 3024 struct wpa_eapol_ie_parse *ie) in wpa_parse_vendor_specific() argument 3038 ie->wmm = &pos[2]; in wpa_parse_vendor_specific() 3039 ie->wmm_len = pos[1]; in wpa_parse_vendor_specific() 3041 ie->wmm, ie->wmm_len); in wpa_parse_vendor_specific() 3043 ie->wmm = &pos[2]; in wpa_parse_vendor_specific() 3044 ie->wmm_len = pos[1]; in wpa_parse_vendor_specific() [all …]
|