Searched defs:ie (Results 1 - 25 of 138) sorted by relevance

123456

/external/llvm/lib/CodeGen/
H A DLiveInterval.cpp88 const_iterator ie = end(); local
96 i = std::upper_bound(i, ie, j->start);
111 while (i != ie) {
114 std::swap(ie, je);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dutils.c25 const u8 *ie, size_t ie_len),
23 hostapd_register_probereq_cb(struct hostapd_data *hapd, int (*cb)(void *ctx, const u8 *sa, const u8 *ie, size_t ie_len), void *ctx) argument
H A Dbeacon.c188 const u8 *ie; local
191 ie = wpa_auth_get_wpa_ie(hapd->wpa_auth, &ielen);
192 if (ie == NULL || ielen > len)
195 os_memcpy(eid, ie, ielen);
207 const u8 *ie; local
213 ie = mgmt->u.probe_req.variable;
221 mgmt->sa, ie, ie_len) > 0)
227 if (ieee802_11_parse_elems(ie, ie_len, &elems, 0) == ParseFailed) {
246 wps = ieee802_11_vendor_ie_concat(ie, ie_len, WPS_DEV_OUI_WFA);
H A Ddrv_callbacks.c41 const u8 *ie, size_t ielen, int reassoc)
47 const u8 *all_ies = ie;
68 ieee802_11_parse_elems(ie, ielen, &elems, 0);
70 ie = elems.wps_ie - 2;
74 ie = elems.rsn_ie - 2;
78 ie = elems.wpa_ie - 2;
82 ie = NULL;
107 if (ie == NULL || ielen == 0) {
119 if (hapd->conf->wps_state && ie[0] == 0xdd && ie[
40 hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr, const u8 *ie, size_t ielen, int reassoc) argument
258 hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa, const u8 *ie, size_t ie_len) argument
[all...]
H A Dwpa_auth_ie.c691 * @ie: Pointer to parsed IE data
695 struct wpa_eapol_ie_parse *ie)
704 ie->wpa_ie = pos;
705 ie->wpa_ie_len = pos[1] + 2;
712 ie->pmkid = pos + 2 + RSN_SELECTOR_LEN;
718 ie->gtk = pos + 2 + RSN_SELECTOR_LEN;
719 ie->gtk_len = pos[1] - RSN_SELECTOR_LEN;
725 ie->mac_addr = pos + 2 + RSN_SELECTOR_LEN;
726 ie->mac_addr_len = pos[1] - RSN_SELECTOR_LEN;
733 ie
694 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
780 wpa_parse_kde_ies(const u8 *buf, size_t len, struct wpa_eapol_ie_parse *ie) argument
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dutils.c25 const u8 *ie, size_t ie_len),
23 hostapd_register_probereq_cb(struct hostapd_data *hapd, int (*cb)(void *ctx, const u8 *sa, const u8 *ie, size_t ie_len), void *ctx) argument
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dutils.c25 const u8 *ie, size_t ie_len),
23 hostapd_register_probereq_cb(struct hostapd_data *hapd, int (*cb)(void *ctx, const u8 *sa, const u8 *ie, size_t ie_len), void *ctx) argument
/external/chromium/chrome/browser/importer/
H A Dimporter_list.cc27 importer::SourceProfile* ie = new importer::SourceProfile(); local
28 ie->importer_name = l10n_util::GetStringUTF16(IDS_IMPORT_FROM_IE);
29 ie->importer_type = importer::MS_IE;
30 ie->source_path.clear();
31 ie->app_path.clear();
32 ie->services_supported = importer::HISTORY | importer::FAVORITES |
34 profiles->push_back(ie);
/external/clang/test/CodeGenCXX/
H A Dvtable-layout-abi-examples.cpp162 int ie; member in struct:Test1::E
/external/llvm/tools/llvm-objdump/
H A DMCFunction.cpp95 unsigned ii = 0, ie = Instructions.size(); local
101 for (; ii != ie; ++ii) {
/external/wpa_supplicant_6/wpa_supplicant/src/drivers/
H A Dscan_helpers.c22 const u8 * wpa_scan_get_ie(const struct wpa_scan_res *res, u8 ie) argument
32 if (pos[0] == ie)
96 const u8 *ie; local
99 ie = wpa_scan_get_ie(res, WLAN_EID_SUPP_RATES);
100 for (i = 0; ie && i < ie[1]; i++) {
101 if ((ie[i + 2] & 0x7f) > rate)
102 rate = ie[i + 2] & 0x7f;
105 ie = wpa_scan_get_ie(res, WLAN_EID_EXT_SUPP_RATES);
106 for (i = 0; ie
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/wps/
H A Dwps.c246 struct wpabuf *ie; local
251 ie = wpabuf_alloc(100);
252 if (ie == NULL)
255 wpabuf_put_u8(ie, WLAN_EID_VENDOR_SPECIFIC);
256 len = wpabuf_put(ie, 1);
257 wpabuf_put_be32(ie, WPS_DEV_OUI_WFA);
259 if (wps_build_version(ie) ||
260 wps_build_req_type(ie, req_type)) {
261 wpabuf_free(ie);
265 *len = wpabuf_len(ie)
285 struct wpabuf *ie; local
[all...]
/external/wpa_supplicant_8/hostapd/src/common/
H A Dieee802_11_common.c309 const u8 *end, *pos, *ie; local
313 ie = NULL;
320 ie = pos;
326 if (ie == NULL)
/external/wpa_supplicant_8/hostapd/src/rsn_supp/
H A Dwpa_ie.c266 * @ie: Pointer to parsed IE data
270 struct wpa_eapol_ie_parse *ie)
279 ie->wpa_ie = pos;
280 ie->wpa_ie_len = pos[1] + 2;
282 ie->wpa_ie, ie->wpa_ie_len);
289 ie->pmkid = pos + 2 + RSN_SELECTOR_LEN;
297 ie->gtk = pos + 2 + RSN_SELECTOR_LEN;
298 ie->gtk_len = pos[1] - RSN_SELECTOR_LEN;
306 ie
269 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
373 wpa_supplicant_parse_ies(const u8 *buf, size_t len, struct wpa_eapol_ie_parse *ie) argument
[all...]
H A Dpreauth.c449 struct wpa_ie_data ie; local
459 if (wpa_parse_wpa_ie(rsn, 2 + rsn[1], &ie))
464 !(ie.capabilities & WPA_CAPABILITY_PREAUTH)))
469 ie.capabilities & WPA_CAPABILITY_PREAUTH);
/external/wpa_supplicant_8/src/common/
H A Dieee802_11_common.c309 const u8 *end, *pos, *ie; local
313 ie = NULL;
320 ie = pos;
326 if (ie == NULL)
/external/wpa_supplicant_8/src/rsn_supp/
H A Dwpa_ie.c266 * @ie: Pointer to parsed IE data
270 struct wpa_eapol_ie_parse *ie)
279 ie->wpa_ie = pos;
280 ie->wpa_ie_len = pos[1] + 2;
282 ie->wpa_ie, ie->wpa_ie_len);
289 ie->pmkid = pos + 2 + RSN_SELECTOR_LEN;
297 ie->gtk = pos + 2 + RSN_SELECTOR_LEN;
298 ie->gtk_len = pos[1] - RSN_SELECTOR_LEN;
306 ie
269 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
373 wpa_supplicant_parse_ies(const u8 *buf, size_t len, struct wpa_eapol_ie_parse *ie) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A Dieee802_11_common.c309 const u8 *end, *pos, *ie; local
313 ie = NULL;
320 ie = pos;
326 if (ie == NULL)
/external/wpa_supplicant_8/wpa_supplicant/src/rsn_supp/
H A Dwpa_ie.c266 * @ie: Pointer to parsed IE data
270 struct wpa_eapol_ie_parse *ie)
279 ie->wpa_ie = pos;
280 ie->wpa_ie_len = pos[1] + 2;
282 ie->wpa_ie, ie->wpa_ie_len);
289 ie->pmkid = pos + 2 + RSN_SELECTOR_LEN;
297 ie->gtk = pos + 2 + RSN_SELECTOR_LEN;
298 ie->gtk_len = pos[1] - RSN_SELECTOR_LEN;
306 ie
269 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
373 wpa_supplicant_parse_ies(const u8 *buf, size_t len, struct wpa_eapol_ie_parse *ie) argument
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
H A Dwpa_ie.c77 wpa_printf(MSG_DEBUG, "%s: ie len too short %lu",
88 wpa_printf(MSG_DEBUG, "%s: malformed ie or unknown version",
101 wpa_printf(MSG_DEBUG, "%s: ie length mismatch, %u too much",
112 wpa_printf(MSG_DEBUG, "%s: ie count botch (pairwise), "
122 wpa_printf(MSG_DEBUG, "%s: ie too short (for key mgmt)",
133 wpa_printf(MSG_DEBUG, "%s: ie count botch (key mgmt), "
143 wpa_printf(MSG_DEBUG, "%s: ie too short (for capabilities)",
155 wpa_printf(MSG_DEBUG, "%s: ie has %u trailing bytes - ignored",
402 * @ie: Pointer to parsed IE data
406 struct wpa_eapol_ie_parse *ie)
405 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
491 wpa_supplicant_parse_ies(const u8 *buf, size_t len, struct wpa_eapol_ie_parse *ie) argument
[all...]
H A Dpreauth.c437 struct wpa_ie_data ie; local
464 if (rsn == NULL || wpa_parse_wpa_ie(rsn, 2 + rsn[1], &ie))
470 !(ie.capabilities & WPA_CAPABILITY_PREAUTH)))
479 ie.capabilities & WPA_CAPABILITY_PREAUTH);
/external/wpa_supplicant/
H A Devents.c102 struct wpa_ie_data ie; local
105 if (wpa_sm_parse_own_wpa_ie(wpa_s->wpa, &ie) < 0 ||
106 ie.pmkid == NULL)
109 for (i = 0; i < ie.num_pmkid; i++) {
111 ie.pmkid + i * PMKID_LEN,
264 struct wpa_ie_data ie; local
270 if (wpa_parse_wpa_ie(bss->rsn_ie, bss->rsn_ie_len, &ie)) {
274 if (!(ie.proto & ssid->proto)) {
280 if (!(ie.pairwise_cipher & ssid->pairwise_cipher)) {
286 if (!(ie
[all...]
H A Dpreauth.c435 struct wpa_ie_data ie; local
459 wpa_parse_wpa_ie(r->rsn_ie, r->rsn_ie_len, &ie))
465 !(ie.capabilities & WPA_CAPABILITY_PREAUTH)))
474 ie.capabilities & WPA_CAPABILITY_PREAUTH);
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps.c366 struct wpabuf *ie; local
371 ie = wpabuf_alloc(100);
372 if (ie == NULL)
375 wpabuf_put_u8(ie, WLAN_EID_VENDOR_SPECIFIC);
376 len = wpabuf_put(ie, 1);
377 wpabuf_put_be32(ie, WPS_DEV_OUI_WFA);
379 if (wps_build_version(ie) ||
380 wps_build_req_type(ie, req_type) ||
381 wps_build_wfa_ext(ie, 0, NULL, 0)) {
382 wpabuf_free(ie);
400 struct wpabuf *ie; local
445 struct wpabuf *ie; local
[all...]
H A Dwps_attr_build.c396 struct wpabuf *ie; local
399 ie = wpabuf_alloc(wpabuf_len(data) + 100);
400 if (ie == NULL) {
412 wpabuf_put_u8(ie, WLAN_EID_VENDOR_SPECIFIC);
413 wpabuf_put_u8(ie, 4 + frag_len);
414 wpabuf_put_be32(ie, WPS_DEV_OUI_WFA);
415 wpabuf_put_data(ie, pos, frag_len);
421 return ie;

Completed in 382 milliseconds

123456