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

1 23 4 5 6 7

  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
wpa.h 106 int wpa_sm_set_assoc_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
109 int wpa_sm_set_ap_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
110 int wpa_sm_set_ap_rsn_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
185 static inline int wpa_sm_set_assoc_wpa_ie(struct wpa_sm *sm, const u8 *ie,
198 static inline int wpa_sm_set_ap_wpa_ie(struct wpa_sm *sm, const u8 *ie,
204 static inline int wpa_sm_set_ap_rsn_ie(struct wpa_sm *sm, const u8 *ie,
peerkey.c 30 static u8 * wpa_add_ie(u8 *pos, const u8 *ie, size_t ie_len)
32 os_memcpy(pos, ie, ie_len);
138 /* KDEs: Peer RSN IE, Initiator MAC Address, Initiator Nonce */
162 /* Peer RSN IE */
185 struct wpa_ie_data ie; local
206 wpa_printf(MSG_INFO, "RSN: No RSN IE or MAC address KDE in "
215 wpa_printf(MSG_INFO, "RSN: Too long Initiator RSN IE in SMK "
220 if (wpa_parse_wpa_ie_rsn(kde.rsn_ie, kde.rsn_ie_len, &ie) < 0) {
221 wpa_printf(MSG_INFO, "RSN: Failed to parse RSN IE in SMK M2");
225 cipher = ie.pairwise_cipher & sm->allowed_pairwise_cipher
476 struct wpa_ie_data ie; local
672 struct wpa_eapol_ie_parse ie; local
1010 struct wpa_ie_data ie; local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/java/sql/
DateTest.java 173 } catch (IllegalArgumentException ie) {
194 } catch (IllegalArgumentException ie) {
215 } catch (IllegalArgumentException ie) {
236 } catch (IllegalArgumentException ie) {
257 } catch (IllegalArgumentException ie) {
279 } catch (IllegalArgumentException ie) {
  /libcore/luni/src/test/java/tests/api/java/lang/ref/
ReferenceQueueTest.java 149 } catch(InterruptedException ie) {
158 } catch(InterruptedException ie) {
164 } catch(InterruptedException ie) {
227 } catch(InterruptedException ie) {
236 } catch(InterruptedException ie) {
242 } catch(InterruptedException ie) {
  /external/wpa_supplicant_6/wpa_supplicant/
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...]
ctrl_iface_dbus_handlers.c 60 * success (ie, a value of 1)
434 const u8 *ie; local
448 ie = wpa_scan_get_ie(res, WLAN_EID_SSID);
449 if (ie) {
451 (const char *) (ie + 2),
452 ie[1]))
456 ie = wpa_scan_get_vendor_ie(res, WPA_IE_VENDOR_TYPE);
457 if (ie) {
459 (const char *) ie,
460 ie[1] + 2)
    [all...]
ctrl_iface.c 628 const u8 *ie, size_t ie_len)
638 if (wpa_parse_wpa_ie(ie, ie_len, &data) < 0) {
757 const u8 *ie, *ie2; local
767 ie = wpa_scan_get_vendor_ie(res, WPA_IE_VENDOR_TYPE);
768 if (ie)
769 pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie, 2 + ie[1]);
774 if (!ie && !ie2 && res->caps & IEEE80211_CAP_PRIVACY) {
787 if (!ie && !ie2) {
793 ie = wpa_scan_get_ie(res, WLAN_EID_SSID)
1500 const u8 *ie, *ie2; local
    [all...]
  /dalvik/tests/044-proxy/src/
BasicTest.java 63 } catch (InterruptedException ie) {
64 System.out.println("Got expected ie");
101 } catch (InstantiationException ie) {
102 System.err.println("failed: " + ie);
103 } catch (IllegalAccessException ie) {
104 System.err.println("failed: " + ie);
  /libcore/luni/src/test/java/tests/api/java/lang/
ProcessManagerTest.java 73 } catch(InterruptedException ie) {
89 } catch(InterruptedException ie) {
99 } catch(InterruptedException ie) {
115 } catch(InterruptedException ie) {
123 } catch(InterruptedException ie) {
  /dalvik/tests/042-new-instance/src/
Main.java 61 } catch (InstantiationError ie) {
113 } catch (InstantiationException ie) {
  /dalvik/tests/068-classloader/src/
FancyLoader.java 98 } catch (InstantiationException ie) {
99 throw new ClassNotFoundException("newInstance failed", ie);
  /dalvik/tests/075-verification-error/src/
Main.java 40 } catch (InstantiationError ie) {
42 if (VERBOSE) System.out.println("--- " + ie);
  /libcore/luni/src/main/java/java/util/concurrent/
ArrayBlockingQueue.java 258 } catch (InterruptedException ie) {
260 throw ie;
293 } catch (InterruptedException ie) {
295 throw ie;
323 } catch (InterruptedException ie) {
325 throw ie;
348 } catch (InterruptedException ie) {
350 throw ie;
CyclicBarrier.java 203 } catch (InterruptedException ie) {
206 throw ie;
PriorityBlockingQueue.java 229 } catch (InterruptedException ie) {
231 throw ie;
254 } catch (InterruptedException ie) {
256 throw ie;
  /dalvik/tests/079-phantom/src/
Main.java 23 } catch (InterruptedException ie) {
  /dalvik/tests/084-class-init/src/
Main.java 26 } catch (InterruptedException ie) {
  /external/wpa_supplicant/
wpa_supplicant.c 1223 struct wpa_ie_data ie; local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ThreadLocalTest.java 114 } catch (InterruptedException ie) {
170 } catch (InterruptedException ie) {
  /libcore/sqlite-jdbc/src/main/java/SQLite/
JDBCDriver.java 111 } catch (java.lang.reflect.InvocationTargetException ie) {
112 throw new SQLException(ie.getTargetException().toString());
  /cts/tools/dx-tests/src/dxc/junit/opcodes/opc_new/
Test_opc_new.java 95 } catch (InstantiationError ie) {
  /cts/tools/vm-tests/src/dot/junit/opcodes/new_instance/
Test_new_instance.java 64 } catch (InstantiationError ie) {
  /dalvik/tests/083-jit-regressions/src/
Main.java 70 } catch (InterruptedException ie) {/*ignore */}
84 * executing the method body (ie the APUT_OBJECT bytecode).
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
DdmServer.java 152 } catch (InterruptedException ie) {
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadTest.java 196 } catch(InterruptedException ie) {
243 } catch(InterruptedException ie) {
278 } catch(InterruptedException ie) {}
378 } catch(InterruptedException ie) {

Completed in 353 milliseconds

1 23 4 5 6 7