Searched defs:ie (Results 101 - 125 of 154) sorted by relevance

1234567

/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new_handlers_p2p.c2601 struct wpabuf *ie; local
2604 ie = wifi_display_get_wfd_ie(global);
2605 if (ie == NULL)
2611 wpabuf_head(ie),
2612 wpabuf_len(ie), error);
2613 wpabuf_free(ie);
2624 struct wpabuf *ie = NULL; local
2644 ie = wpabuf_alloc(len);
2645 if (ie == NULL)
2648 wpabuf_put_data(ie, dat
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Devents.c233 struct wpa_ie_data ie; local
237 if (wpa_sm_parse_own_wpa_ie(wpa_s->wpa, &ie) < 0 ||
238 ie.pmkid == NULL)
241 for (i = 0; i < ie.num_pmkid; i++) {
243 ie.pmkid + i * PMKID_LEN,
422 struct wpa_ie_data ie; local
442 if (wpa_parse_wpa_ie(rsn_ie, 2 + rsn_ie[1], &ie)) {
449 (ie.group_cipher & (WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)))
456 if (!(ie.proto & ssid->proto)) {
462 if (!(ie
748 const u8 *ie; local
2599 wpas_event_disconnect(struct wpa_supplicant *wpa_s, const u8 *addr, u16 reason_code, int locally_generated, const u8 *ie, size_t ie_len, int deauth) argument
2648 const u8 *ie = NULL; local
2702 const u8 *ie = NULL; local
3219 const u8 *ie = mgmt->u.probe_req.variable; local
3254 const u8 *ie = mgmt->u.probe_req.variable; local
[all...]
H A Dinterworking.c222 const u8 *ie; local
223 ie = wpa_bss_get_ie(bss, WLAN_EID_ROAMING_CONSORTIUM);
224 if (ie == NULL || ie[1] == 0)
226 return ie[2]; /* Number of ANQP OIs */
1013 static int roaming_consortium_element_match(const u8 *ie, const u8 *rc_id, argument
1019 if (ie == NULL)
1022 pos = ie + 2;
1023 end = ie + 2 + ie[
1081 roaming_consortium_match(const u8 *ie, const struct wpabuf *anqp, const u8 *rc_id, size_t rc_len) argument
1091 const u8 *ie; local
1190 const u8 *ie; local
1284 const u8 *ie; local
2476 const u8 *ie; local
[all...]
H A Dwps_supplicant.c178 const u8 *ie; local
204 ie = wpa_bss_get_ie(bss, WLAN_EID_RSN);
205 if (ie && wpa_parse_wpa_ie(ie, 2 + ie[1], &adv) == 0) {
210 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
211 if (ie && wpa_parse_wpa_ie(ie, 2 + ie[1], &adv) == 0 &&
216 if (ie
1685 struct wpabuf *ie; local
1731 struct wpabuf *ie; local
[all...]
H A Dwpa_supplicant.c900 struct wpa_ie_data *ie)
902 int ret = wpa_sm_parse_own_wpa_ie(wpa_s->wpa, ie);
913 if (!(ie->group_cipher & ssid->group_cipher)) {
916 ie->group_cipher, ssid->group_cipher);
919 if (!(ie->pairwise_cipher & ssid->pairwise_cipher)) {
922 ie->pairwise_cipher, ssid->pairwise_cipher);
925 if (!(ie->key_mgmt & ssid->key_mgmt)) {
928 ie->key_mgmt, ssid->key_mgmt);
933 if (!(ie->capabilities & WPA_CAPABILITY_MFPC) &&
966 struct wpa_ie_data ie; local
898 wpa_supplicant_suites_from_ai(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid, struct wpa_ie_data *ie) argument
1598 const u8 *ie, *md = NULL; local
1917 struct wpa_ie_data ie; local
[all...]
H A Dctrl_iface.c2067 const u8 *ie, size_t ie_len)
2078 if (wpa_parse_wpa_ie(ie, ie_len, &data) < 0) {
2208 const u8 *ie, *ie2, *p2p; local
2226 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
2227 if (ie)
2228 pos = wpa_supplicant_ie_txt(pos, end, "WPA", ie, 2 + ie[1]);
2233 if (!ie && !ie2 && bss->caps & IEEE80211_CAP_PRIVACY) {
3494 const u8 *ie, *ie2; local
3578 ret = os_snprintf(pos, end - pos, "ie
2066 wpa_supplicant_ie_txt(char *pos, char *end, const char *proto, const u8 *ie, size_t ie_len) argument
6395 u8 *ie, *end; local
[all...]
H A Dp2p_supplicant.c5856 const u8 *ie, size_t ie_len, int ssi_signal)
5864 ie, ie_len)) {
5866 wpas_notify_preq(wpa_s, addr, dst, bssid, ie, ie_len,
6247 u16 reason_code, const u8 *ie, size_t ie_len,
6254 p2p_deauth_notif(wpa_s->global->p2p, bssid, reason_code, ie,
6274 u16 reason_code, const u8 *ie, size_t ie_len,
6281 p2p_disassoc_notif(wpa_s->global->p2p, bssid, reason_code, ie,
5854 wpas_p2p_probe_req_rx(struct wpa_supplicant *wpa_s, const u8 *addr, const u8 *dst, const u8 *bssid, const u8 *ie, size_t ie_len, int ssi_signal) argument
6246 wpas_p2p_deauth_notif(struct wpa_supplicant *wpa_s, const u8 *bssid, u16 reason_code, const u8 *ie, size_t ie_len, int locally_generated) argument
6273 wpas_p2p_disassoc_notif(struct wpa_supplicant *wpa_s, const u8 *bssid, u16 reason_code, const u8 *ie, size_t ie_len, int locally_generated) argument
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dwpa_auth.c707 struct wpa_ie_data ie; local
710 if (wpa_parse_wpa_ie_rsn(kde->rsn_ie, kde->rsn_ie_len, &ie) < 0 ||
711 ie.num_pmkid != 1 || ie.pmkid == NULL) {
717 os_memcpy(sm->sup_pmk_r1_name, ie.pmkid, PMKID_LEN);
H A Dwps_hostapd.c40 const u8 *ie, size_t ie_len,
1326 const u8 *ie, size_t ie_len,
1336 if (ieee802_11_parse_elems(ie, ie_len, &elems, 0) == ParseFailed) {
1348 wps_ie = ieee802_11_vendor_ie_concat(ie, ie_len, WPS_DEV_OUI_WFA);
1324 hostapd_wps_probe_req_rx(void *ctx, const u8 *addr, const u8 *da, const u8 *bssid, const u8 *ie, size_t ie_len, int ssi_signal) argument
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_atheros.c674 atheros_set_opt_ie(void *priv, const u8 *ie, size_t ie_len) argument
682 wpa_hexdump(MSG_DEBUG, "atheros: set_generic_elem", ie, ie_len);
685 drv->wpa_ie = wpabuf_alloc_copy(ie, ie_len);
688 os_memcpy(&(app_ie->app_buf[0]), ie, ie_len);
796 event.rx_probe_req.ie = mgmt->u.probe_req.variable;
1069 atheros_set_wps_ie(void *priv, const u8 *ie, size_t len, u32 frametype) argument
1077 wpa_hexdump(MSG_DEBUG, "atheros: IE", ie, len);
1082 os_memcpy(&(beac_ie->app_buf[0]), ie, len);
1138 u16 status_code, const u8 *ie, size_t len)
1154 os_memcpy(mlme.im_optie, ie, le
1137 atheros_sta_auth(void *priv, const u8 *own_addr, const u8 *addr, u16 seq, u16 status_code, const u8 *ie, size_t len) argument
1174 atheros_sta_assoc(void *priv, const u8 *own_addr, const u8 *addr, int reassoc, u16 status_code, const u8 *ie, size_t len) argument
1217 struct ieee80211req_wpaie ie; local
2063 athr_wnm_tfs(struct atheros_driver_data *drv, const u8* peer, u8 *ie, u16 *len, enum wnm_oper oper) argument
[all...]
H A Ddriver_bsd.c500 struct ieee80211req_wpaie ie; local
507 memset(&ie, 0, sizeof(ie));
508 memcpy(ie.wpa_macaddr, addr, IEEE80211_ADDR_LEN);
509 if (get80211var(priv, IEEE80211_IOC_WPAIE, &ie, sizeof(ie)) < 0) {
513 iebuf = ie.wpa_ie;
514 ielen = ie.wpa_ie[1];
578 bsd_set_opt_ie(void *priv, const u8 *ie, size_t ie_len) argument
581 wpa_printf(MSG_DEBUG, "%s: set WPA+RSN ie (le
[all...]
H A Ddriver_test.c49 u8 *ie; member in struct:test_driver_bss
117 os_free(bss->ie);
478 u8 ie[512]; local
498 if (ielen > sizeof(ie))
499 ielen = sizeof(ie);
500 if (hexstr2bin(data, ie, ielen) < 0)
505 wpa_hexdump(MSG_MSGDUMP, "test_driver: scan IEs", ie, ielen);
509 event.rx_probe_req.ie = ie;
530 pos += wpa_snprintf_hex(pos, end - pos, bss->ie, bs
552 u8 ie[256], ssid[32]; local
1658 wpa_scan_get_ie(const struct wpa_scan_res *res, u8 ie) argument
[all...]
H A Ddriver_wext.c1107 u8 *ie; member in struct:wext_scan_data
1262 tmp = os_realloc(res->ie, res->ie_len + gend - gpos);
1266 res->ie = tmp;
1290 tmp = os_realloc(res->ie, res->ie_len + bytes);
1293 res->ie = tmp;
1305 tmp = os_realloc(res->ie, res->ie_len + bytes);
1308 res->ie = tmp;
1349 pos = data->ie;
1394 if (data->ie)
1395 os_memcpy(pos, data->ie, dat
1917 wpa_driver_wext_set_gen_ie(void *priv, const u8 *ie, size_t ie_len) argument
[all...]
H A Ddriver_ndis.c781 static const u8 * wpa_scan_get_ie(const struct wpa_scan_res *res, u8 ie) argument
791 if (pos[0] == ie)
/external/wpa_supplicant_8/wpa_supplicant/src/rsn_supp/
H A Dtdls.c82 static u8 * wpa_add_tdls_timeoutie(u8 *pos, u8 *ie, size_t ie_len, u32 tsecs);
165 static u8 * wpa_add_ie(u8 *pos, const u8 *ie, size_t ie_len) argument
167 os_memcpy(pos, ie, ie_len);
1738 struct wpa_ie_data ie; local
1912 if (wpa_parse_wpa_ie_rsn(kde.rsn_ie, kde.rsn_ie_len, &ie) < 0) {
1918 cipher = ie.pairwise_cipher;
1928 if ((ie.capabilities &
2120 struct wpa_ie_data ie; local
2283 if (wpa_parse_wpa_ie_rsn(kde.rsn_ie, kde.rsn_ie_len, &ie) < 0) {
2289 cipher = ie
2549 wpa_add_tdls_timeoutie(u8 *pos, u8 *ie, size_t ie_len, u32 tsecs) argument
[all...]
H A Dwpa.c385 struct wpa_eapol_ie_parse ie; local
401 os_memset(&ie, 0, sizeof(ie));
407 if (wpa_supplicant_parse_ies(key_data, key_data_len, &ie) < 0)
409 if (ie.pmkid) {
411 "Authenticator", ie.pmkid, PMKID_LEN);
415 res = wpa_supplicant_get_pmk(sm, src_addr, ie.pmkid);
748 struct wpa_eapol_ie_parse *ie)
754 if (ie->igtk) {
759 if (ie
747 ieee80211w_set_keys(struct wpa_sm *sm, struct wpa_eapol_ie_parse *ie) argument
830 ft_validate_mdie(struct wpa_sm *sm, const unsigned char *src_addr, struct wpa_eapol_ie_parse *ie, const u8 *assoc_resp_mdie) argument
861 ft_validate_ftie(struct wpa_sm *sm, const unsigned char *src_addr, struct wpa_eapol_ie_parse *ie, const u8 *assoc_resp_ftie) argument
889 ft_validate_rsnie(struct wpa_sm *sm, const unsigned char *src_addr, struct wpa_eapol_ie_parse *ie) argument
925 wpa_supplicant_validate_ie_ft(struct wpa_sm *sm, const unsigned char *src_addr, struct wpa_eapol_ie_parse *ie) argument
960 wpa_supplicant_validate_ie(struct wpa_sm *sm, const unsigned char *src_addr, struct wpa_eapol_ie_parse *ie) argument
1076 struct wpa_eapol_ie_parse ie; local
1195 struct wpa_eapol_ie_parse ie; local
2517 wpa_sm_set_assoc_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len) argument
2552 wpa_sm_set_ap_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len) argument
2587 wpa_sm_set_ap_rsn_ie(struct wpa_sm *sm, const u8 *ie, size_t len) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGCall.cpp988 CGFunctionInfo::const_arg_iterator it = FI.arg_begin(), ie; local
990 ie = it + FI.getRequiredArgs().getNumRequiredArgs();
992 ie = FI.arg_end();
994 for (; it != ie; ++it) {
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_ndis.c781 static const u8 * wpa_scan_get_ie(const struct wpa_scan_res *res, u8 ie) argument
791 if (pos[0] == ie)
H A Ddriver.h390 const u8 *ie; member in struct:wpa_driver_auth_params
2634 * @ie: assoc response ie buffer
2635 * @len: ie buffer length
2642 int reassoc, u16 status, const u8 *ie, size_t len);
2651 * @ie: authentication frame ie buffer
2652 * @len: ie buffer length
2658 u16 seq, u16 status, const u8 *ie, size_t len);
2664 * @tspec_ie: tspec ie buffe
3644 const u8 *ie; member in struct:wpa_event_data::disassoc_info
3675 const u8 *ie; member in struct:wpa_event_data::deauth_info
3959 const u8 *ie; member in struct:wpa_event_data::rx_probe_req
4161 drv_event_assoc(void *ctx, const u8 *addr, const u8 *ie, size_t ielen, int reassoc) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p.c1859 const u8 *ie, size_t ie_len)
1865 if (p2p_parse_ies(ie, ie_len, &msg) < 0 || msg.p2p_attributes == NULL)
2061 const u8 *bssid, const u8 *ie, size_t ie_len)
2076 if (ieee802_11_parse_elems((u8 *) ie, ie_len, &elems, 0) ==
2120 if (p2p_parse_ies(ie, ie_len, &msg) < 0) {
2216 const u8 *bssid, const u8 *ie, size_t ie_len)
2220 p2p_add_dev_from_probe_req(p2p, addr, ie, ie_len);
2222 res = p2p_reply_probe(p2p, addr, dst, bssid, ie, ie_len);
4048 const u8 *ie, size_t ie_len)
4052 if (bssid == NULL || ie
1858 p2p_add_dev_from_probe_req(struct p2p_data *p2p, const u8 *addr, const u8 *ie, size_t ie_len) argument
2060 p2p_reply_probe(struct p2p_data *p2p, const u8 *addr, const u8 *dst, const u8 *bssid, const u8 *ie, size_t ie_len) argument
2215 p2p_probe_req_rx(struct p2p_data *p2p, const u8 *addr, const u8 *dst, const u8 *bssid, const u8 *ie, size_t ie_len) argument
4047 p2p_deauth_notif(struct p2p_data *p2p, const u8 *bssid, u16 reason_code, const u8 *ie, size_t ie_len) argument
4071 p2p_disassoc_notif(struct p2p_data *p2p, const u8 *bssid, u16 reason_code, const u8 *ie, size_t ie_len) argument
4433 p2p_set_wfd_ie_beacon(struct p2p_data *p2p, struct wpabuf *ie) argument
4442 p2p_set_wfd_ie_probe_req(struct p2p_data *p2p, struct wpabuf *ie) argument
4450 p2p_set_wfd_ie_probe_resp(struct p2p_data *p2p, struct wpabuf *ie) argument
4459 p2p_set_wfd_ie_assoc_req(struct p2p_data *p2p, struct wpabuf *ie) argument
4467 p2p_set_wfd_ie_invitation(struct p2p_data *p2p, struct wpabuf *ie) argument
4475 p2p_set_wfd_ie_prov_disc_req(struct p2p_data *p2p, struct wpabuf *ie) argument
4483 p2p_set_wfd_ie_prov_disc_resp(struct p2p_data *p2p, struct wpabuf *ie) argument
4491 p2p_set_wfd_ie_go_neg(struct p2p_data *p2p, struct wpabuf *ie) argument
[all...]
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_ndis.c781 static const u8 * wpa_scan_get_ie(const struct wpa_scan_res *res, u8 ie) argument
791 if (pos[0] == ie)
/external/wpa_supplicant_8/src/p2p/
H A Dp2p.c1859 const u8 *ie, size_t ie_len)
1865 if (p2p_parse_ies(ie, ie_len, &msg) < 0 || msg.p2p_attributes == NULL)
2061 const u8 *bssid, const u8 *ie, size_t ie_len)
2076 if (ieee802_11_parse_elems((u8 *) ie, ie_len, &elems, 0) ==
2120 if (p2p_parse_ies(ie, ie_len, &msg) < 0) {
2216 const u8 *bssid, const u8 *ie, size_t ie_len)
2220 p2p_add_dev_from_probe_req(p2p, addr, ie, ie_len);
2222 res = p2p_reply_probe(p2p, addr, dst, bssid, ie, ie_len);
4048 const u8 *ie, size_t ie_len)
4052 if (bssid == NULL || ie
1858 p2p_add_dev_from_probe_req(struct p2p_data *p2p, const u8 *addr, const u8 *ie, size_t ie_len) argument
2060 p2p_reply_probe(struct p2p_data *p2p, const u8 *addr, const u8 *dst, const u8 *bssid, const u8 *ie, size_t ie_len) argument
2215 p2p_probe_req_rx(struct p2p_data *p2p, const u8 *addr, const u8 *dst, const u8 *bssid, const u8 *ie, size_t ie_len) argument
4047 p2p_deauth_notif(struct p2p_data *p2p, const u8 *bssid, u16 reason_code, const u8 *ie, size_t ie_len) argument
4071 p2p_disassoc_notif(struct p2p_data *p2p, const u8 *bssid, u16 reason_code, const u8 *ie, size_t ie_len) argument
4433 p2p_set_wfd_ie_beacon(struct p2p_data *p2p, struct wpabuf *ie) argument
4442 p2p_set_wfd_ie_probe_req(struct p2p_data *p2p, struct wpabuf *ie) argument
4450 p2p_set_wfd_ie_probe_resp(struct p2p_data *p2p, struct wpabuf *ie) argument
4459 p2p_set_wfd_ie_assoc_req(struct p2p_data *p2p, struct wpabuf *ie) argument
4467 p2p_set_wfd_ie_invitation(struct p2p_data *p2p, struct wpabuf *ie) argument
4475 p2p_set_wfd_ie_prov_disc_req(struct p2p_data *p2p, struct wpabuf *ie) argument
4483 p2p_set_wfd_ie_prov_disc_resp(struct p2p_data *p2p, struct wpabuf *ie) argument
4491 p2p_set_wfd_ie_go_neg(struct p2p_data *p2p, struct wpabuf *ie) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p.c1859 const u8 *ie, size_t ie_len)
1865 if (p2p_parse_ies(ie, ie_len, &msg) < 0 || msg.p2p_attributes == NULL)
2061 const u8 *bssid, const u8 *ie, size_t ie_len)
2076 if (ieee802_11_parse_elems((u8 *) ie, ie_len, &elems, 0) ==
2120 if (p2p_parse_ies(ie, ie_len, &msg) < 0) {
2216 const u8 *bssid, const u8 *ie, size_t ie_len)
2220 p2p_add_dev_from_probe_req(p2p, addr, ie, ie_len);
2222 res = p2p_reply_probe(p2p, addr, dst, bssid, ie, ie_len);
4048 const u8 *ie, size_t ie_len)
4052 if (bssid == NULL || ie
1858 p2p_add_dev_from_probe_req(struct p2p_data *p2p, const u8 *addr, const u8 *ie, size_t ie_len) argument
2060 p2p_reply_probe(struct p2p_data *p2p, const u8 *addr, const u8 *dst, const u8 *bssid, const u8 *ie, size_t ie_len) argument
2215 p2p_probe_req_rx(struct p2p_data *p2p, const u8 *addr, const u8 *dst, const u8 *bssid, const u8 *ie, size_t ie_len) argument
4047 p2p_deauth_notif(struct p2p_data *p2p, const u8 *bssid, u16 reason_code, const u8 *ie, size_t ie_len) argument
4071 p2p_disassoc_notif(struct p2p_data *p2p, const u8 *bssid, u16 reason_code, const u8 *ie, size_t ie_len) argument
4433 p2p_set_wfd_ie_beacon(struct p2p_data *p2p, struct wpabuf *ie) argument
4442 p2p_set_wfd_ie_probe_req(struct p2p_data *p2p, struct wpabuf *ie) argument
4450 p2p_set_wfd_ie_probe_resp(struct p2p_data *p2p, struct wpabuf *ie) argument
4459 p2p_set_wfd_ie_assoc_req(struct p2p_data *p2p, struct wpabuf *ie) argument
4467 p2p_set_wfd_ie_invitation(struct p2p_data *p2p, struct wpabuf *ie) argument
4475 p2p_set_wfd_ie_prov_disc_req(struct p2p_data *p2p, struct wpabuf *ie) argument
4483 p2p_set_wfd_ie_prov_disc_resp(struct p2p_data *p2p, struct wpabuf *ie) argument
4491 p2p_set_wfd_ie_go_neg(struct p2p_data *p2p, struct wpabuf *ie) argument
[all...]
/external/valgrind/main/helgrind/
H A Dlibhb_core.c2578 VtsTE* ie = VG_(indexXA)( vts_tab, ii ); local
2579 tl_assert(ie->vts == NULL);
2580 tl_assert(ie->rc == 0);
2581 tl_assert(ie->freelink == VtsID_INVALID);
2582 ie->freelink = vts_tab_freelist;
2591 VtsTE* ie; local
2595 ie = VG_(indexXA)( vts_tab, ii );
2596 tl_assert(ie->vts == NULL);
2597 tl_assert(ie->rc == 0);
2598 vts_tab_freelist = ie
2623 VtsTE* ie; local
2635 VtsTE* ie; local
2657 VtsTE* ie; local
2664 VtsTE* ie = VG_(indexXA)( vts_tab, ii ); local
2685 VtsTE* ie = VG_(indexXA)( vts_tab, i ); local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-starteam.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 456 milliseconds

1234567