HomeSort by relevance Sort by last modified time
    Searched refs:ie (Results 26 - 50 of 155) sorted by null

12 3 4 5 6 7

  /cts/tools/dx-tests/src/dxc/junit/opcodes/freturn/jm/
T_freturn_7.java 51 catch(InterruptedException ie) {
  /cts/tools/dx-tests/src/dxc/junit/opcodes/invokespecial/jm/
T_invokespecial_22.java 50 catch(InterruptedException ie) {
  /cts/tools/dx-tests/src/dxc/junit/opcodes/invokestatic/jm/
T_invokestatic_12.java 50 catch(InterruptedException ie) {
  /cts/tools/dx-tests/src/dxc/junit/opcodes/invokevirtual/jm/
T_invokevirtual_2.java 50 catch(InterruptedException ie) {
  /cts/tools/dx-tests/src/dxc/junit/opcodes/ireturn/jm/
T_ireturn_7.java 51 catch(InterruptedException ie) {
  /cts/tools/dx-tests/src/dxc/junit/opcodes/opc_return/jm/
T_opc_return_2.java 50 catch(InterruptedException ie) {
  /external/dbus/test/name-test/
run-test.sh 3 ie() function
  /external/wpa_supplicant_6/wpa_supplicant/
wps_supplicant.c 95 const u8 *ie; local
118 ie = wpa_scan_get_ie(bss, WLAN_EID_SSID);
119 if (ie == NULL)
121 if (ie[1] != ssid->ssid_len || ssid->ssid == NULL ||
122 os_memcmp(ie + 2, ssid->ssid, ssid->ssid_len) != 0)
135 ie = wpa_scan_get_ie(bss, WLAN_EID_RSN);
136 if (ie && wpa_parse_wpa_ie(ie, 2 + ie[1], &adv) == 0) {
141 ie = wpa_scan_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE)
503 const u8 *ie; local
864 struct wpabuf *ie; local
902 struct wpabuf *ie; local
    [all...]
wpa_supplicant.c 683 struct wpa_ie_data *ie)
685 int ret = wpa_sm_parse_own_wpa_ie(wpa_s->wpa, ie);
688 wpa_msg(wpa_s, MSG_INFO, "WPA: Failed to parse WPA IE "
694 wpa_printf(MSG_DEBUG, "WPA: Using WPA IE from AssocReq to set cipher "
696 if (!(ie->group_cipher & ssid->group_cipher)) {
699 ie->group_cipher, ssid->group_cipher);
702 if (!(ie->pairwise_cipher & ssid->pairwise_cipher)) {
705 ie->pairwise_cipher, ssid->pairwise_cipher);
708 if (!(ie->key_mgmt & ssid->key_mgmt)) {
711 ie->key_mgmt, ssid->key_mgmt)
748 struct wpa_ie_data ie; local
950 const u8 *ie = wpa_scan_get_ie(bss, WLAN_EID_SSID); local
1111 const u8 *ie = wpa_scan_get_ie(bss, WLAN_EID_SSID); local
1158 struct wpa_ie_data ie; local
    [all...]
  /frameworks/base/core/java/android/view/
LayoutInflater.java 508 InflateException ie = new InflateException(attrs.getPositionDescription() local
511 ie.initCause(e);
512 throw ie;
518 InflateException ie = new InflateException(attrs.getPositionDescription() local
521 ie.initCause(e);
522 throw ie;
530 InflateException ie = new InflateException(attrs.getPositionDescription() local
533 throw ie;
581 InflateException ie = new InflateException(attrs.getPositionDescription() local
583 ie.initCause(e)
587 InflateException ie = new InflateException(attrs.getPositionDescription() local
    [all...]
  /external/wpa_supplicant/
wpa.c 47 /* WPA IE version 1
133 * 2/4: RSN IE
134 * 3/4: one or two RSN IEs + GTK IE (encrypted)
136 * 1/2: GTK IE (encrypted)
140 /* RSN IE version 1
342 static u8 * wpa_add_ie(u8 *pos, const u8 *ie, size_t ie_len)
344 os_memcpy(pos, ie, ie_len);
381 /* No WPA IE - fail silently */
386 wpa_printf(MSG_DEBUG, "%s: ie len too short %lu",
397 wpa_printf(MSG_DEBUG, "%s: malformed ie or unknown version"
1050 struct wpa_ie_data ie; local
1490 struct wpa_eapol_ie_parse ie; local
2014 struct wpa_eapol_ie_parse ie; local
2256 struct wpa_ie_data ie; local
2514 struct wpa_ie_data ie; local
2710 struct wpa_eapol_ie_parse ie; local
2968 struct wpa_eapol_ie_parse ie; local
    [all...]
driver_broadcom.c 459 struct bss_ie_hdr *ie; local
465 /* get ie's */
468 ie = (struct bss_ie_hdr *) ((u8 *) wbi + sizeof(*wbi));
470 left -= (ie->len + 2), ie = (struct bss_ie_hdr *)
471 ((u8 *) ie + 2 + ie->len)) {
472 wpa_printf(MSG_MSGDUMP, "BROADCOM: IE: id:%x, len:%d",
473 ie->elem_id, ie->len)
    [all...]
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...]
wpa.h 124 int wpa_sm_set_assoc_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
127 int wpa_sm_set_ap_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
128 int wpa_sm_set_ap_rsn_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
205 static inline int wpa_sm_set_assoc_wpa_ie(struct wpa_sm *sm, const u8 *ie,
218 static inline int wpa_sm_set_ap_wpa_ie(struct wpa_sm *sm, const u8 *ie,
224 static inline int wpa_sm_set_ap_rsn_ie(struct wpa_sm *sm, const u8 *ie,
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_broadcom.c 464 struct bss_ie_hdr *ie; local
470 /* get ie's */
473 ie = (struct bss_ie_hdr *) ((u8 *) wbi + sizeof(*wbi));
475 left -= (ie->len + 2), ie = (struct bss_ie_hdr *)
476 ((u8 *) ie + 2 + ie->len)) {
477 wpa_printf(MSG_MSGDUMP, "BROADCOM: IE: id:%x, len:%d",
478 ie->elem_id, ie->len)
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
AdbWrapper.java 87 } catch (InterruptedException ie) {
88 display("Unable to run 'adb': %1$s.", ie.getMessage()); //$NON-NLS-1$
125 catch (InterruptedException ie) {
  /cts/tools/dx-tests/src/dxc/junit/opcodes/areturn/jm/
T_areturn_7.java 54 catch(InterruptedException ie) {
  /cts/tools/dx-tests/src/dxc/junit/opcodes/invokeinterface/jm/
T_invokeinterface_19.java 61 catch(InterruptedException ie) {
  /cts/tools/dx-tests/src/dxc/junit/opcodes/lreturn/jm/
T_lreturn_7.java 53 catch(InterruptedException ie) {
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
wpa_ie.h 2 * wpa_supplicant - WPA/RSN IE and KDE definitions
49 struct wpa_eapol_ie_parse *ie);
  /dalvik/tests/079-phantom/src/
Bitmap.java 57 } catch (InterruptedException ie) {
142 } catch (InterruptedException ie) {
  /dalvik/tests/086-null-super/src/
Main.java 94 } catch (InstantiationException ie) {
95 throw new TestFailed(ie);
  /dalvik/tests/087-gc-after-link/src/
Main.java 94 } catch (InstantiationException ie) {
95 throw new TestFailed(ie);
  /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]);
  /libcore/luni/src/main/java/org/apache/xalan/processor/
ProcessorTemplateElem.java 69 catch (InstantiationException ie)
71 handler.error(XSLTErrorResources.ER_FAILED_CREATING_ELEMTMPL, null, ie);//"Failed creating ElemTemplateElement instance!", ie);

Completed in 1100 milliseconds

12 3 4 5 6 7