Home
last modified time | relevance | path

Searched refs:ie (Results 1 – 25 of 473) sorted by relevance

12345678910>>...19

/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.rotate/
Drotate.pass.cpp111 int ie[] = {0, 1, 2, 3, 4}; in test() local
112 const unsigned se = sizeof(ie)/sizeof(ie[0]); in test()
113 r = std::rotate(Iter(ie), Iter(ie), Iter(ie+se)); in test()
114 assert(base(r) == ie+se); in test()
115 assert(ie[0] == 0); in test()
116 assert(ie[1] == 1); in test()
117 assert(ie[2] == 2); in test()
118 assert(ie[3] == 3); in test()
119 assert(ie[4] == 4); in test()
120 r = std::rotate(Iter(ie), Iter(ie+1), Iter(ie+se)); in test()
[all …]
/external/wpa_supplicant_8/src/rsn_supp/
Dwpa_ie.c329 struct wpa_eapol_ie_parse *ie) in wpa_parse_vendor_specific() argument
342 ie->wmm = &pos[2]; in wpa_parse_vendor_specific()
343 ie->wmm_len = pos[1]; in wpa_parse_vendor_specific()
345 ie->wmm, ie->wmm_len); in wpa_parse_vendor_specific()
347 ie->wmm = &pos[2]; in wpa_parse_vendor_specific()
348 ie->wmm_len = pos[1]; in wpa_parse_vendor_specific()
350 ie->wmm, ie->wmm_len); in wpa_parse_vendor_specific()
365 struct wpa_eapol_ie_parse *ie) in wpa_parse_generic() argument
374 ie->wpa_ie = pos; in wpa_parse_generic()
375 ie->wpa_ie_len = pos[1] + 2; in wpa_parse_generic()
[all …]
Dwpa.c450 struct wpa_eapol_ie_parse ie; in wpa_supplicant_process_1_of_4() local
466 os_memset(&ie, 0, sizeof(ie)); in wpa_supplicant_process_1_of_4()
472 if (wpa_supplicant_parse_ies(key_data, key_data_len, &ie) < 0) in wpa_supplicant_process_1_of_4()
474 if (ie.pmkid) { in wpa_supplicant_process_1_of_4()
476 "Authenticator", ie.pmkid, PMKID_LEN); in wpa_supplicant_process_1_of_4()
480 res = wpa_supplicant_get_pmk(sm, src_addr, ie.pmkid); in wpa_supplicant_process_1_of_4()
858 struct wpa_eapol_ie_parse *ie) in ieee80211w_set_keys() argument
864 if (ie->igtk) { in ieee80211w_set_keys()
869 if (ie->igtk_len != WPA_IGTK_KDE_PREFIX_LEN + len) in ieee80211w_set_keys()
871 igtk = (const struct wpa_igtk_kde *) ie->igtk; in ieee80211w_set_keys()
[all …]
/external/wpa_supplicant_8/wpa_supplicant/
Dwifi_display.c41 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
161 ie = wifi_display_encaps(buf); in wifi_display_update_wfd_ie()
162 wpa_hexdump_buf(MSG_DEBUG, "WFD: WFD IE for Beacon", ie); in wifi_display_update_wfd_ie()
163 p2p_set_wfd_ie_beacon(global->p2p, ie); in wifi_display_update_wfd_ie()
165 ie = wifi_display_encaps(buf); in wifi_display_update_wfd_ie()
[all …]
Dbss.c36 const u8 *ie = wpa_bss_get_ie(bss, WLAN_EID_INTERWORKING); in wpa_bss_set_hessid() local
37 if (ie == NULL || (ie[1] != 7 && ie[1] != 9)) { in wpa_bss_set_hessid()
41 if (ie[1] == 7) in wpa_bss_set_hessid()
42 os_memcpy(bss->hessid, ie + 3, ETH_ALEN); in wpa_bss_set_hessid()
44 os_memcpy(bss->hessid, ie + 5, ETH_ALEN); in wpa_bss_set_hessid()
420 const struct wpa_scan_res *new_res, u32 ie) in are_ies_equal() argument
427 switch (ie) { in are_ies_equal()
429 old_ie = wpa_bss_get_vendor_ie(old, ie); in are_ies_equal()
430 new_ie = wpa_scan_get_vendor_ie(new_res, ie); in are_ies_equal()
434 old_ie_buff = wpa_bss_get_vendor_ie_multi(old, ie); in are_ies_equal()
[all …]
Dsme.c201 const u8 *ie; in sme_send_authentication() local
356 ie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN); in sme_send_authentication()
357 if (ie && ie[1] >= MOBILITY_DOMAIN_ID_LEN) in sme_send_authentication()
358 md = ie + 2; in sme_send_authentication()
359 wpa_sm_set_ft_params(wpa_s->wpa, ie, ie ? 2 + ie[1] : 0); in sme_send_authentication()
362 wpa_ft_prepare_auth_request(wpa_s->wpa, ie); in sme_send_authentication()
386 params.ie = wpa_s->sme.ft_ies; in sme_send_authentication()
1291 const u8 *ie; in sme_proc_obss_scan() local
1316 ie = wpa_bss_get_ie(wpa_s->current_bss, WLAN_EID_COUNTRY); in sme_proc_obss_scan()
1317 if (ie && (ie[1] >= 6) && (ie[5] >= 201)) in sme_proc_obss_scan()
[all …]
Devents.c314 struct wpa_ie_data ie; in wpa_find_assoc_pmkid() local
318 if (wpa_sm_parse_own_wpa_ie(wpa_s->wpa, &ie) < 0 || in wpa_find_assoc_pmkid()
319 ie.pmkid == NULL) in wpa_find_assoc_pmkid()
322 for (i = 0; i < ie.num_pmkid; i++) { in wpa_find_assoc_pmkid()
324 ie.pmkid + i * PMKID_LEN, in wpa_find_assoc_pmkid()
503 struct wpa_ie_data ie; in wpa_supplicant_ssid_bss_match() local
523 if (wpa_parse_wpa_ie(rsn_ie, 2 + rsn_ie[1], &ie)) { in wpa_supplicant_ssid_bss_match()
530 (ie.group_cipher & (WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104))) in wpa_supplicant_ssid_bss_match()
537 if (!(ie.proto & ssid->proto)) { in wpa_supplicant_ssid_bss_match()
543 if (!(ie.pairwise_cipher & ssid->pairwise_cipher)) { in wpa_supplicant_ssid_bss_match()
[all …]
/external/wpa_supplicant_8/src/wps/
Dwps.c422 struct wpabuf *ie; in wps_build_assoc_req_ie() local
427 ie = wpabuf_alloc(100); in wps_build_assoc_req_ie()
428 if (ie == NULL) in wps_build_assoc_req_ie()
431 wpabuf_put_u8(ie, WLAN_EID_VENDOR_SPECIFIC); in wps_build_assoc_req_ie()
432 len = wpabuf_put(ie, 1); in wps_build_assoc_req_ie()
433 wpabuf_put_be32(ie, WPS_DEV_OUI_WFA); in wps_build_assoc_req_ie()
435 if (wps_build_version(ie) || in wps_build_assoc_req_ie()
436 wps_build_req_type(ie, req_type) || in wps_build_assoc_req_ie()
437 wps_build_wfa_ext(ie, 0, NULL, 0)) { in wps_build_assoc_req_ie()
438 wpabuf_free(ie); in wps_build_assoc_req_ie()
[all …]
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/
Dunique.pass.cpp56 int ie[] = {0, 0, 1, 0}; in test() local
57 const unsigned se = sizeof(ie)/sizeof(ie[0]); in test()
58 r = std::unique(Iter(ie), Iter(ie+se)); in test()
59 assert(base(r) == ie + 3); in test()
60 assert(ie[0] == 0); in test()
61 assert(ie[1] == 1); in test()
62 assert(ie[2] == 0); in test()
130 Ptr ie[4]; in test1() local
131 ie[2].reset(&one); in test1()
132 const unsigned se = sizeof(ie)/sizeof(ie[0]); in test1()
[all …]
Dunique_pred.pass.cpp74 int ie[] = {0, 0, 1, 0}; in test() local
75 const unsigned se = sizeof(ie)/sizeof(ie[0]); in test()
77 r = std::unique(Iter(ie), Iter(ie+se), count_equal()); in test()
78 assert(base(r) == ie + 3); in test()
79 assert(ie[0] == 0); in test()
80 assert(ie[1] == 1); in test()
81 assert(ie[2] == 0); in test()
164 Ptr ie[4]; in test1() local
165 ie[2].reset(&one); in test1()
166 const unsigned se = sizeof(ie)/sizeof(ie[0]); in test1()
[all …]
Dunique_copy.pass.cpp59 const int ie[] = {0, 0, 1, 0}; in test() local
60 const unsigned se = sizeof(ie)/sizeof(ie[0]); in test()
62 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je)); in test()
Dunique_copy_pred.pass.cpp78 const int ie[] = {0, 0, 1, 0}; in test() local
79 const unsigned se = sizeof(ie)/sizeof(ie[0]); in test()
82 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je), count_equal()); in test()
/external/llvm/lib/Support/
DDAGDeltaAlgorithm.cpp129 ie = S.end(); it != ie; ++it) in ExecuteOneTest()
185 ie = Changes.end(); it != ie; ++it) { in DAGDeltaAlgorithmImpl() local
190 ie = Dependencies.end(); it != ie; ++it) { in DAGDeltaAlgorithmImpl() local
197 ie = Changes.end(); it != ie; ++it) in DAGDeltaAlgorithmImpl() local
209 ie = pred_end(Change); it != ie; ++it) { in DAGDeltaAlgorithmImpl() local
218 ie = Changes.end(); it != ie; ++it) in DAGDeltaAlgorithmImpl() local
221 ie = Changes.end(); it != ie; ++it) in DAGDeltaAlgorithmImpl() local
231 ie = Changes.end(); it != ie; ++it) { in DAGDeltaAlgorithmImpl()
249 ie = Roots.end(); it != ie; ++it) { in DAGDeltaAlgorithmImpl()
257 ie = Changes.end(); it != ie; ++it) { in DAGDeltaAlgorithmImpl()
[all …]
DDeltaAlgorithm.cpp35 ie = S.end(); it != ie; ++it, ++idx) in Split() local
61 ie = Sets.end(); it != ie; ++it) in Delta() local
74 ie = Sets.end(); it != ie; ++it) { in Search() local
/external/wpa_supplicant_8/src/p2p/
Dp2p_group.c127 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 …]
/external/clang/lib/Frontend/
DTextDiagnosticBuffer.cpp50 for (const_iterator it = err_begin(), ie = err_end(); it != ie; ++it) in FlushDiagnostics() local
53 for (const_iterator it = warn_begin(), ie = warn_end(); it != ie; ++it) in FlushDiagnostics() local
56 for (const_iterator it = remark_begin(), ie = remark_end(); it != ie; ++it) in FlushDiagnostics() local
59 for (const_iterator it = note_begin(), ie = note_end(); it != ie; ++it) in FlushDiagnostics() local
/external/llvm/lib/Option/
DArgList.cpp49 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it) in getLastArgNoClaim() local
57 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it) in getLastArgNoClaim() local
67 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it) in getLastArgNoClaim() local
77 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it) in getLastArgNoClaim() local
86 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in getLastArg() local
98 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in getLastArg() local
113 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in getLastArg() local
128 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in getLastArg() local
145 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in getLastArg() local
163 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in getLastArg() local
[all …]
/external/wpa_supplicant_8/src/ap/
Dwpa_auth_ie.c777 struct wpa_eapol_ie_parse *ie) in wpa_parse_generic() argument
786 ie->wpa_ie = pos; in wpa_parse_generic()
787 ie->wpa_ie_len = pos[1] + 2; in wpa_parse_generic()
792 ie->osen = pos; in wpa_parse_generic()
793 ie->osen_len = pos[1] + 2; in wpa_parse_generic()
800 ie->pmkid = pos + 2 + RSN_SELECTOR_LEN; in wpa_parse_generic()
806 ie->gtk = pos + 2 + RSN_SELECTOR_LEN; in wpa_parse_generic()
807 ie->gtk_len = pos[1] - RSN_SELECTOR_LEN; in wpa_parse_generic()
813 ie->mac_addr = pos + 2 + RSN_SELECTOR_LEN; in wpa_parse_generic()
814 ie->mac_addr_len = pos[1] - RSN_SELECTOR_LEN; in wpa_parse_generic()
[all …]
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/
Db2CollideEdge.cpp476 b2ClipVertex ie[2]; in Collide() local
498 ie[0].v = m_polygonB.vertices[i1]; in Collide()
499 ie[0].id.cf.indexA = 0; in Collide()
500 ie[0].id.cf.indexB = static_cast<uint8>(i1); in Collide()
501 ie[0].id.cf.typeA = b2ContactFeature::e_face; in Collide()
502 ie[0].id.cf.typeB = b2ContactFeature::e_vertex; in Collide()
504 ie[1].v = m_polygonB.vertices[i2]; in Collide()
505 ie[1].id.cf.indexA = 0; in Collide()
506 ie[1].id.cf.indexB = static_cast<uint8>(i2); in Collide()
507 ie[1].id.cf.typeA = b2ContactFeature::e_face; in Collide()
[all …]
/external/clang/lib/Driver/
DCompilation.cpp39 ie = TCArgs.end(); it != ie; ++it) in ~Compilation() local
44 for (ActionList::iterator it = Actions.begin(), ie = Actions.end(); in ~Compilation() local
45 it != ie; ++it) in ~Compilation()
105 it = Files.begin(), ie = Files.end(); it != ie; ++it) in CleanupFileList() local
115 it = Files.begin(), ie = Files.end(); it != ie; ++it) { in CleanupFileMap() local
/external/libxml2/result/c14n/without-comments/
Dmerlin-c14n-two-031 <bar:Something xmlns:bar="http://example.org/bar" xml:lang="en-ie">
3 <bar:Something xml:lang="en-ie">
5 <baz:Something xmlns:baz="http://example.org/baz" xml:lang="en-ie"></baz:Something>
/external/jetty/src/java/org/eclipse/jetty/client/webdav/
DWebdavListener.java274 catch ( InterruptedException ie ) in checkExists()
276 LOG.ignore( ie ); in checkExists()
299 catch ( InterruptedException ie ) in makeCollection()
301 LOG.ignore( ie ); in makeCollection()
324 catch (InterruptedException ie ) in checkWebdavSupported()
326 LOG.ignore( ie ); in checkWebdavSupported()
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DDateTest.java149 } catch (IllegalArgumentException ie) { in testGetHours()
164 } catch (IllegalArgumentException ie) { in testGetMinutes()
179 } catch (IllegalArgumentException ie) { in testGetSeconds()
194 } catch (IllegalArgumentException ie) { in testSetHours()
209 } catch (IllegalArgumentException ie) { in testSetMinutes()
225 } catch (IllegalArgumentException ie) { in testSetSeconds()
/external/guava/guava-testlib/src/com/google/common/testing/
DGcFinalization.java149 } catch (InterruptedException ie) { in awaitDone()
150 throw new RuntimeException("Unexpected interrupt while waiting for future", ie); in awaitDone()
181 } catch (InterruptedException ie) { in await()
182 throw new RuntimeException("Unexpected interrupt while waiting for latch", ie); in await()
/external/autotest/client/tests/aio_dio_bugs/src/
Daio-dio-subblock-eof-read.c44 struct io_event ie; in main() local
82 ret = io_getevents(ioctx, 1, 1, &ie, NULL); in main()
90 if (ie.res != FILE_SIZE) in main()

12345678910>>...19