HomeSort by relevance Sort by last modified time
    Searched defs:ie (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /dalvik/tests/048-server-socket/src/
Main.java 14 } catch (InterruptedException ie) {
15 ie.printStackTrace();
  /dalvik/tests/053-wait-some/src/
Main.java 27 } catch (InterruptedException ie) {
28 ie.printStackTrace();
37 } catch (InterruptedException ie) {
38 ie.printStackTrace();
  /external/llvm/lib/CodeGen/
LiveInterval.cpp 88 const_iterator ie = end(); local
96 i = std::upper_bound(i, ie, j->start);
111 while (i != ie) {
114 std::swap(ie, je);
  /external/llvm/tools/llvm-objdump/
MCFunction.cpp 95 unsigned ii = 0, ie = Instructions.size(); local
101 for (; ii != ie; ++ii) {
  /external/wpa_supplicant_8/src/common/
ieee802_11_common.c 86 /* Wi-Fi Protected Setup (WPS) IE */
102 /* Wi-Fi Alliance - P2P IE */
145 * @len: Length of IE buffer in octets
309 const u8 *end, *pos, *ie; local
313 ie = NULL;
320 ie = pos;
326 if (ie == NULL)
327 return NULL; /* No specified vendor IE found */
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
BackgroundThread.java 40 } catch (InterruptedException ie) {
41 ie.printStackTrace();
  /dalvik/tests/051-thread/src/
Main.java 13 } catch (InterruptedException ie) {
14 ie.printStackTrace();
66 catch (InterruptedException ie) {
  /external/chromium/chrome/browser/importer/
importer_list.cc 26 // IE always exists and doesn't have multiple profiles.
27 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_6/wpa_supplicant/src/wps/
wps.c 75 wpa_hexdump_buf(MSG_DEBUG, "WPS: WPS IE from (Re)AssocReq",
78 wpa_printf(MSG_DEBUG, "WPS: Failed to parse WPS IE "
82 "in (Re)AssocReq WPS IE");
84 wpa_printf(MSG_DEBUG, "WPS: Request Type (from WPS IE "
85 "in (Re)AssocReq WPS IE): %d",
163 * wps_is_selected_pbc_registrar - Check whether WPS IE indicates active PBC
164 * @msg: WPS IE contents from Beacon or Probe Response frame
189 * wps_is_selected_pin_registrar - Check whether WPS IE indicates active PIN
190 * @msg: WPS IE contents from Beacon or Probe Response frame
220 * wps_get_uuid_e - Get UUID-E from WPS IE
246 struct wpabuf *ie; local
285 struct wpabuf *ie; local
    [all...]
  /external/clang/test/CodeGenCXX/
vtable-layout-abi-examples.cpp 162 int ie; member in struct:Test1::E
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
scan_helpers.c 22 const u8 * wpa_scan_get_ie(const struct wpa_scan_res *res, u8 ie)
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 && i < ie[1]; i++)
    [all...]
  /dalvik/tests/050-sync-test/src/
Main.java 27 catch (InterruptedException ie) {
29 ie.printStackTrace();
46 catch (InterruptedException ie) {
48 ie.printStackTrace();
57 catch (InterruptedException ie) {
59 ie.printStackTrace();
154 catch (InterruptedException ie) {
170 catch (InterruptedException ie) {
  /development/tools/emulator/test-apps/GpsLocationTest/src/com/android/emulator/gps/test/
GpsLocationTest.java 65 }catch ( InterruptedException ie){
66 ie.printStackTrace();
  /external/wpa_supplicant/
preauth.c 435 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);
events.c 102 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,
119 wpa_printf(MSG_DEBUG, "RSN: PMKID from assoc IE %sfound from PMKSA "
264 struct wpa_ie_data ie; local
270 if (wpa_parse_wpa_ie(bss->rsn_ie, bss->rsn_ie_len, &ie)) {
271 wpa_printf(MSG_DEBUG, " skip RSN IE - parse failed");
274 if (!(ie.proto & ssid->proto))
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
preauth.c 437 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/src/ap/
beacon.c 188 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);
  /external/wpa_supplicant_8/src/rsn_supp/
preauth.c 449 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/wps/
wps.c 83 wpa_hexdump_buf(MSG_DEBUG, "WPS: WPS IE from (Re)AssocReq",
86 wpa_printf(MSG_DEBUG, "WPS: Failed to parse WPS IE "
90 "in (Re)AssocReq WPS IE");
92 wpa_printf(MSG_DEBUG, "WPS: Request Type (from WPS IE "
93 "in (Re)AssocReq WPS IE): %d",
192 * wps_is_selected_pbc_registrar - Check whether WPS IE indicates active PBC
193 * @msg: WPS IE contents from Beacon or Probe Response frame
253 * wps_is_selected_pin_registrar - Check whether WPS IE indicates active PIN
254 * @msg: WPS IE contents from Beacon or Probe Response frame
269 * wps_is_addr_authorized - Check whether WPS IE authorizes MAC addres
366 struct wpabuf *ie; local
400 struct wpabuf *ie; local
445 struct wpabuf *ie; local
    [all...]
wps_attr_build.c 393 /* Encapsulate WPS IE data with one (or more, if needed) IE headers */
396 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;
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/tests/
test_wpa.c 132 const u8 *ie; local
137 ie = wpa_auth_get_wpa_ie(wpa->auth_group, &ielen);
138 if (ie == NULL || ielen < 1)
140 if (ie[0] == WLAN_EID_RSN)
141 return wpa_sm_set_ap_rsn_ie(wpa->supp, ie, 2 + ie[1]);
142 return wpa_sm_set_ap_wpa_ie(wpa->supp, ie, 2 + ie[1]);
  /packages/apps/Email/src/com/android/email/mail/store/
ImapConnection.java 392 } catch (ImapException ie) {
395 Log.d(Logging.LOG_TAG, ie.toString());
417 } catch (ImapException ie) {
420 Log.d(Logging.LOG_TAG, ie.toString());
449 } catch (ImapException ie) {
451 Log.d(Logging.LOG_TAG, ie.toString());
453 throw new AuthenticationFailedException(ie.getAlertText(), ie); local
472 } catch (ImapException ie) {
475 Log.d(Logging.LOG_TAG, ie.toString())
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
events.c 113 struct wpa_ie_data ie; local
117 if (wpa_sm_parse_own_wpa_ie(wpa_s->wpa, &ie) < 0 ||
118 ie.pmkid == NULL)
121 for (i = 0; i < ie.num_pmkid; i++) {
123 ie.pmkid + i * PMKID_LEN,
131 wpa_printf(MSG_DEBUG, "RSN: PMKID from assoc IE %sfound from PMKSA "
283 struct wpa_ie_data ie; local
296 if (wpa_parse_wpa_ie(rsn_ie, 2 + rsn_ie[1], &ie)) {
297 wpa_printf(MSG_DEBUG, " skip RSN IE - parse failed");
300 if (!(ie.proto & ssid->proto))
389 const u8 *ie; local
484 const u8 *ie; local
    [all...]
wpas_glue.c 305 const u8 *ie; local
314 ie = wpa_scan_get_ie(r, WLAN_EID_SSID);
316 ((ie && ie[1] == ssid->ssid_len &&
317 os_memcmp(ie + 2, ssid->ssid, ssid->ssid_len) == 0) ||
325 ie = wpa_scan_get_vendor_ie(curr, WPA_IE_VENDOR_TYPE);
326 if (wpa_sm_set_ap_wpa_ie(wpa_s->wpa, ie, ie ? 2 + ie[1] : 0))
329 ie = wpa_scan_get_ie(curr, WLAN_EID_RSN)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/tests/
test_wpa.c 140 const u8 *ie; local
145 ie = wpa_auth_get_wpa_ie(wpa->auth_group, &ielen);
146 if (ie == NULL || ielen < 1)
148 if (ie[0] == WLAN_EID_RSN)
149 return wpa_sm_set_ap_rsn_ie(wpa->supp, ie, 2 + ie[1]);
150 return wpa_sm_set_ap_wpa_ie(wpa->supp, ie, 2 + ie[1]);

Completed in 1047 milliseconds

1 2 3 4