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

1234567

/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/wpa_supplicant_8/hostapd/src/ap/
H A Dutils.c20 const u8 *ie, size_t ie_len,
17 hostapd_register_probereq_cb(struct hostapd_data *hapd, int (*cb)(void *ctx, const u8 *sa, const u8 *da, const u8 *bssid, const u8 *ie, size_t ie_len, int ssi_signal), void *ctx) argument
H A Dbeacon.c178 const u8 *ie; local
181 ie = wpa_auth_get_wpa_ie(hapd->wpa_auth, &ielen);
182 if (ie == NULL || ielen > len)
185 os_memcpy(eid, ie, ielen);
319 const u8 *ie; local
325 ie = mgmt->u.probe_req.variable;
333 ie, ie_len, ssi_signal) > 0)
339 if (ieee802_11_parse_elems(ie, ie_len, &elems, 0) == ParseFailed) {
355 wps = ieee802_11_vendor_ie_concat(ie, ie_len, WPS_DEV_OUI_WFA);
368 p2p = ieee802_11_vendor_ie_concat(ie, ie_le
[all...]
H A Dwpa_auth_ie.c612 * @ie: Pointer to parsed IE data
616 struct wpa_eapol_ie_parse *ie)
625 ie->wpa_ie = pos;
626 ie->wpa_ie_len = pos[1] + 2;
633 ie->pmkid = pos + 2 + RSN_SELECTOR_LEN;
639 ie->gtk = pos + 2 + RSN_SELECTOR_LEN;
640 ie->gtk_len = pos[1] - RSN_SELECTOR_LEN;
646 ie->mac_addr = pos + 2 + RSN_SELECTOR_LEN;
647 ie->mac_addr_len = pos[1] - RSN_SELECTOR_LEN;
654 ie
615 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
701 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.c20 const u8 *ie, size_t ie_len,
17 hostapd_register_probereq_cb(struct hostapd_data *hapd, int (*cb)(void *ctx, const u8 *sa, const u8 *da, const u8 *bssid, const u8 *ie, size_t ie_len, int ssi_signal), void *ctx) argument
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dutils.c20 const u8 *ie, size_t ie_len,
17 hostapd_register_probereq_cb(struct hostapd_data *hapd, int (*cb)(void *ctx, const u8 *sa, const u8 *da, const u8 *bssid, const u8 *ie, size_t ie_len, int ssi_signal), void *ctx) argument
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwifi_display.c38 struct wpabuf *ie, *buf; local
127 ie = wifi_display_encaps(buf);
128 wpa_hexdump_buf(MSG_DEBUG, "WFD: WFD IE for Beacon", ie);
129 p2p_set_wfd_ie_beacon(global->p2p, ie);
131 ie = wifi_display_encaps(buf);
133 ie);
134 p2p_set_wfd_ie_assoc_req(global->p2p, ie);
136 ie = wifi_display_encaps(buf);
137 wpa_hexdump_buf(MSG_DEBUG, "WFD: WFD IE for GO Negotiation", ie);
138 p2p_set_wfd_ie_go_neg(global->p2p, ie);
[all...]
/external/clang/test/CodeGenCXX/
H A Dvtable-layout-abi-examples.cpp162 int ie; member in struct:Test1::E
/external/llvm/lib/CodeGen/
H A DLiveInterval.cpp109 const_iterator ie = end(); local
117 i = std::upper_bound(i, ie, j->start);
132 while (i != ie) {
135 std::swap(ie, je);
/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/rsn_supp/
H A Dwpa_ie.c246 * @ie: Pointer to parsed IE data
250 struct wpa_eapol_ie_parse *ie)
259 ie->wpa_ie = pos;
260 ie->wpa_ie_len = pos[1] + 2;
262 ie->wpa_ie, ie->wpa_ie_len);
269 ie->pmkid = pos + 2 + RSN_SELECTOR_LEN;
277 ie->gtk = pos + 2 + RSN_SELECTOR_LEN;
278 ie->gtk_len = pos[1] - RSN_SELECTOR_LEN;
286 ie
249 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
353 wpa_supplicant_parse_ies(const u8 *buf, size_t len, struct wpa_eapol_ie_parse *ie) argument
[all...]
/external/wpa_supplicant_8/src/rsn_supp/
H A Dwpa_ie.c246 * @ie: Pointer to parsed IE data
250 struct wpa_eapol_ie_parse *ie)
259 ie->wpa_ie = pos;
260 ie->wpa_ie_len = pos[1] + 2;
262 ie->wpa_ie, ie->wpa_ie_len);
269 ie->pmkid = pos + 2 + RSN_SELECTOR_LEN;
277 ie->gtk = pos + 2 + RSN_SELECTOR_LEN;
278 ie->gtk_len = pos[1] - RSN_SELECTOR_LEN;
286 ie
249 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
353 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/rsn_supp/
H A Dwpa_ie.c246 * @ie: Pointer to parsed IE data
250 struct wpa_eapol_ie_parse *ie)
259 ie->wpa_ie = pos;
260 ie->wpa_ie_len = pos[1] + 2;
262 ie->wpa_ie, ie->wpa_ie_len);
269 ie->pmkid = pos + 2 + RSN_SELECTOR_LEN;
277 ie->gtk = pos + 2 + RSN_SELECTOR_LEN;
278 ie->gtk_len = pos[1] - RSN_SELECTOR_LEN;
286 ie
249 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
353 wpa_supplicant_parse_ies(const u8 *buf, size_t len, struct wpa_eapol_ie_parse *ie) argument
[all...]
/external/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp126 symbol_iterator ie = obj->end_symbols(); local
127 while (it != ie) {
143 symbol_iterator ie = obj->end_dynamic_symbols(); local
144 while (it != ie) {
165 library_iterator ie = obj->end_libraries_needed(); local
167 while (it != ie) {
/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_8/hostapd/src/common/
H A Dieee802_11_common.c334 const u8 *end, *pos, *ie; local
338 ie = NULL;
345 ie = pos;
351 if (ie == NULL)
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p_pd.c99 struct wpabuf *ie; local
103 ie = p2p_group_get_wfd_ie(g);
104 if (ie) {
105 wfd_ie = ie;
/external/wpa_supplicant_8/src/common/
H A Dieee802_11_common.c334 const u8 *end, *pos, *ie; local
338 ie = NULL;
345 ie = pos;
351 if (ie == NULL)
/external/wpa_supplicant_8/src/p2p/
H A Dp2p_pd.c99 struct wpabuf *ie; local
103 ie = p2p_group_get_wfd_ie(g);
104 if (ie) {
105 wfd_ie = ie;
/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A Dieee802_11_common.c334 const u8 *end, *pos, *ie; local
338 ie = NULL;
345 ie = pos;
351 if (ie == NULL)
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p_pd.c99 struct wpabuf *ie; local
103 ie = p2p_group_get_wfd_ie(g);
104 if (ie) {
105 wfd_ie = ie;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/
H A Dantlr.js85 * @property ie
88 ie:0,
212 o.ie=parseFloat(m[1]);
213 } else { // not opera, webkit, or ie
347 if (org.antlr.env.ua.ie) {

Completed in 3039 milliseconds

1234567