Searched defs:ie (Results 51 - 75 of 154) sorted by relevance

1234567

/external/wpa_supplicant_8/wpa_supplicant/tests/
H A Dtest_wpa.c122 const u8 *ie; local
127 ie = wpa_auth_get_wpa_ie(wpa->auth_group, &ielen);
128 if (ie == NULL || ielen < 1)
130 if (ie[0] == WLAN_EID_RSN)
131 return wpa_sm_set_ap_rsn_ie(wpa->supp, ie, 2 + ie[1]);
132 return wpa_sm_set_ap_wpa_ie(wpa->supp, ie, 2 + ie[1]);
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwnm_sta.c773 u8 ie, ie_len; local
779 ie = *pos++;
782 ie, ie_len);
797 if (ie == WLAN_EID_VENDOR_SPECIFIC && ie_len >= 5 &&
836 if (ie == WLAN_EID_VENDOR_SPECIFIC && ie_len >= 8 &&
H A Dbss.c41 const u8 *ie = wpa_bss_get_ie(bss, WLAN_EID_INTERWORKING); local
42 if (ie == NULL || (ie[1] != 7 && ie[1] != 9)) {
46 if (ie[1] == 7)
47 os_memcpy(bss->hessid, ie + 3, ETH_ALEN);
49 os_memcpy(bss->hessid, ie + 5, ETH_ALEN);
394 const struct wpa_scan_res *new, u32 ie)
401 switch (ie) {
403 old_ie = wpa_bss_get_vendor_ie(old, ie);
393 are_ies_equal(const struct wpa_bss *old, const struct wpa_scan_res *new, u32 ie) argument
999 wpa_bss_get_ie(const struct wpa_bss *bss, u8 ie) argument
1178 const u8 *ie; local
1208 const u8 *ie, *ie2; local
[all...]
H A Dnotify.c620 const u8 *ie, size_t ie_len, u32 ssi_signal)
623 wpas_dbus_signal_preq(wpa_s, addr, dst, bssid, ie, ie_len, ssi_signal);
618 wpas_notify_preq(struct wpa_supplicant *wpa_s, const u8 *addr, const u8 *dst, const u8 *bssid, const u8 *ie, size_t ie_len, u32 ssi_signal) argument
H A Dap.c455 const u8 *bssid, const u8 *ie, size_t ie_len,
459 return wpas_p2p_probe_req_rx(wpa_s, sa, da, bssid, ie, ie_len,
454 ap_probe_req_rx(void *ctx, const u8 *sa, const u8 *da, const u8 *bssid, const u8 *ie, size_t ie_len, int ssi_signal) argument
/external/tcpdump/
H A Dprint-wb.c271 const struct id_off *io, *ie; local
279 for (ie = io + ps->nid; io < ie && (u_char *)(io + 1) <= ep; ++io) {
/external/wpa_supplicant_8/hostapd/src/ap/
H A Ddrv_callbacks.c43 const u8 *ie; local
72 ie = elems.wps_ie - 2;
76 ie = elems.rsn_ie - 2;
80 ie = elems.wpa_ie - 2;
85 ie = elems.osen - 2;
90 ie = NULL;
161 if (ie == NULL || ielen == 0) {
176 if (hapd->conf->wps_state && ie[0] == 0xdd && ie[1] >= 4 &&
177 os_memcmp(ie
525 hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa, const u8 *da, const u8 *bssid, const u8 *ie, size_t ie_len, int ssi_signal) argument
[all...]
H A Dap_drv_ops.c336 u16 seq, u16 status, const u8 *ie, size_t len)
341 seq, status, ie, len);
346 int reassoc, u16 status, const u8 *ie, size_t len)
351 reassoc, status, ie, len);
335 hostapd_sta_auth(struct hostapd_data *hapd, const u8 *addr, u16 seq, u16 status, const u8 *ie, size_t len) argument
345 hostapd_sta_assoc(struct hostapd_data *hapd, const u8 *addr, int reassoc, u16 status, const u8 *ie, size_t len) argument
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p_group.c127 static void p2p_client_info(struct wpabuf *ie, struct p2p_group_member *m) argument
131 if (wpabuf_tailroom(ie) < wpabuf_len(m->client_info) + 1)
133 wpabuf_put_buf(ie, m->client_info);
138 struct wpabuf *ie)
159 p2p_buf_add_capability(ie, dev_capab, group_capab);
163 static void p2p_group_add_noa(struct wpabuf *ie, struct wpabuf *noa) argument
168 wpabuf_put_u8(ie, P2P_ATTR_NOTICE_OF_ABSENCE);
169 wpabuf_put_le16(ie, wpabuf_len(noa));
170 wpabuf_put_buf(ie, noa);
176 struct wpabuf *ie; local
137 p2p_group_add_common_ies(struct p2p_group *group, struct wpabuf *ie) argument
209 struct wpabuf *ie; local
256 struct wpabuf *ie; local
442 struct wpabuf *p2p_subelems, *ie; local
599 p2p_group_notif_assoc(struct p2p_group *group, const u8 *addr, const u8 *ie, size_t len) argument
[all...]
/external/wpa_supplicant_8/src/ap/
H A Ddrv_callbacks.c43 const u8 *ie; local
72 ie = elems.wps_ie - 2;
76 ie = elems.rsn_ie - 2;
80 ie = elems.wpa_ie - 2;
85 ie = elems.osen - 2;
90 ie = NULL;
161 if (ie == NULL || ielen == 0) {
176 if (hapd->conf->wps_state && ie[0] == 0xdd && ie[1] >= 4 &&
177 os_memcmp(ie
525 hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa, const u8 *da, const u8 *bssid, const u8 *ie, size_t ie_len, int ssi_signal) argument
[all...]
H A Dap_drv_ops.c336 u16 seq, u16 status, const u8 *ie, size_t len)
341 seq, status, ie, len);
346 int reassoc, u16 status, const u8 *ie, size_t len)
351 reassoc, status, ie, len);
335 hostapd_sta_auth(struct hostapd_data *hapd, const u8 *addr, u16 seq, u16 status, const u8 *ie, size_t len) argument
345 hostapd_sta_assoc(struct hostapd_data *hapd, const u8 *addr, int reassoc, u16 status, const u8 *ie, size_t len) argument
/external/wpa_supplicant_8/src/p2p/
H A Dp2p_group.c127 static void p2p_client_info(struct wpabuf *ie, struct p2p_group_member *m) argument
131 if (wpabuf_tailroom(ie) < wpabuf_len(m->client_info) + 1)
133 wpabuf_put_buf(ie, m->client_info);
138 struct wpabuf *ie)
159 p2p_buf_add_capability(ie, dev_capab, group_capab);
163 static void p2p_group_add_noa(struct wpabuf *ie, struct wpabuf *noa) argument
168 wpabuf_put_u8(ie, P2P_ATTR_NOTICE_OF_ABSENCE);
169 wpabuf_put_le16(ie, wpabuf_len(noa));
170 wpabuf_put_buf(ie, noa);
176 struct wpabuf *ie; local
137 p2p_group_add_common_ies(struct p2p_group *group, struct wpabuf *ie) argument
209 struct wpabuf *ie; local
256 struct wpabuf *ie; local
442 struct wpabuf *p2p_subelems, *ie; local
599 p2p_group_notif_assoc(struct p2p_group *group, const u8 *addr, const u8 *ie, size_t len) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Ddrv_callbacks.c43 const u8 *ie; local
72 ie = elems.wps_ie - 2;
76 ie = elems.rsn_ie - 2;
80 ie = elems.wpa_ie - 2;
85 ie = elems.osen - 2;
90 ie = NULL;
161 if (ie == NULL || ielen == 0) {
176 if (hapd->conf->wps_state && ie[0] == 0xdd && ie[1] >= 4 &&
177 os_memcmp(ie
525 hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa, const u8 *da, const u8 *bssid, const u8 *ie, size_t ie_len, int ssi_signal) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p_group.c127 static void p2p_client_info(struct wpabuf *ie, struct p2p_group_member *m) argument
131 if (wpabuf_tailroom(ie) < wpabuf_len(m->client_info) + 1)
133 wpabuf_put_buf(ie, m->client_info);
138 struct wpabuf *ie)
159 p2p_buf_add_capability(ie, dev_capab, group_capab);
163 static void p2p_group_add_noa(struct wpabuf *ie, struct wpabuf *noa) argument
168 wpabuf_put_u8(ie, P2P_ATTR_NOTICE_OF_ABSENCE);
169 wpabuf_put_le16(ie, wpabuf_len(noa));
170 wpabuf_put_buf(ie, noa);
176 struct wpabuf *ie; local
137 p2p_group_add_common_ies(struct p2p_group *group, struct wpabuf *ie) argument
209 struct wpabuf *ie; local
256 struct wpabuf *ie; local
442 struct wpabuf *p2p_subelems, *ie; local
599 p2p_group_notif_assoc(struct p2p_group *group, const u8 *addr, const u8 *ie, size_t len) argument
[all...]
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlcode.c608 Instruction ie = getcode(fs, e); local
609 if (GET_OPCODE(ie) == OP_NOT) {
611 return condjump(fs, OP_TEST, GETARG_B(ie), 0, !cond);
/external/clang/lib/Driver/
H A DDriver.cpp125 for (ArgList::const_iterator it = Args->begin(), ie = Args->end();
126 it != ie; ++it) {
142 ie = Args->filtered_end(); it != ie; ++it) {
206 ie = Args.end(); it != ie; ++it) {
349 ie = Args->filtered_end(); it != ie; ++it) {
445 for (InputList::iterator it = Inputs.begin(), ie = Inputs.end(); it != ie;) {
992 const arg_iterator ie = Args.filtered_end(); local
[all...]
/external/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp963 sections::iterator i, ie; local
974 for (i = Sections.begin(), ie = Sections.end(),
976 (i != ie) && (j != je); ++i, ++j) {
/external/opencv/cvaux/src/
H A Dcveigenobjects.cpp698 int i, io, ie, imin = igr * nio, imax = imin + nio; local
728 for( ie = imin; ie < imax; ie++ )
732 float e = ev[ie * nObjects + io] * eigVals[ie];
733 float *be = ((float *) buffer) + ((ie - imin) * eigStep);
761 for( ie = imin; ie < imax; ie
[all...]
/external/wpa_supplicant_8/hostapd/src/common/
H A Dwpa_common.c195 static int wpa_ft_parse_ftie(const u8 *ie, size_t ie_len, argument
200 parse->ftie = ie;
203 pos = ie + sizeof(struct rsn_ftie);
204 end = ie + ie_len;
461 wpa_printf(MSG_DEBUG, "%s: ie len too short %lu",
471 wpa_printf(MSG_DEBUG, "%s: malformed ie or unknown version",
489 wpa_printf(MSG_DEBUG, "%s: ie length mismatch, %u too much",
500 wpa_printf(MSG_DEBUG, "%s: ie count botch (pairwise), "
517 wpa_printf(MSG_DEBUG, "%s: ie too short (for key mgmt)",
528 wpa_printf(MSG_DEBUG, "%s: ie coun
[all...]
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_madwifi.c645 madwifi_set_opt_ie(void *priv, const u8 *ie, size_t ie_len) argument
727 event.rx_probe_req.ie = mgmt->u.probe_req.variable;
761 madwifi_set_wps_ie(void *priv, const u8 *ie, size_t len, u32 frametype) argument
773 memcpy(&(beac_ie->app_buf[0]), ie, len);
819 struct ieee80211req_wpaie ie; local
826 memset(&ie, 0, sizeof(ie));
827 memcpy(ie.wpa_macaddr, addr, IEEE80211_ADDR_LEN);
828 if (set80211priv(drv, IEEE80211_IOCTL_GETWPAIE, &ie, sizeof(ie))) {
[all...]
/external/wpa_supplicant_8/hostapd/src/rsn_supp/
H A Dwpa.h117 int wpa_sm_set_assoc_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
120 int wpa_sm_set_ap_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
121 int wpa_sm_set_ap_rsn_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
204 static inline int wpa_sm_set_assoc_wpa_ie(struct wpa_sm *sm, const u8 *ie, argument
217 static inline int wpa_sm_set_ap_wpa_ie(struct wpa_sm *sm, const u8 *ie, argument
223 static inline int wpa_sm_set_ap_rsn_ie(struct wpa_sm *sm, const u8 *ie, argument
/external/wpa_supplicant_8/src/common/
H A Dwpa_common.c195 static int wpa_ft_parse_ftie(const u8 *ie, size_t ie_len, argument
200 parse->ftie = ie;
203 pos = ie + sizeof(struct rsn_ftie);
204 end = ie + ie_len;
461 wpa_printf(MSG_DEBUG, "%s: ie len too short %lu",
471 wpa_printf(MSG_DEBUG, "%s: malformed ie or unknown version",
489 wpa_printf(MSG_DEBUG, "%s: ie length mismatch, %u too much",
500 wpa_printf(MSG_DEBUG, "%s: ie count botch (pairwise), "
517 wpa_printf(MSG_DEBUG, "%s: ie too short (for key mgmt)",
528 wpa_printf(MSG_DEBUG, "%s: ie coun
[all...]
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_madwifi.c645 madwifi_set_opt_ie(void *priv, const u8 *ie, size_t ie_len) argument
727 event.rx_probe_req.ie = mgmt->u.probe_req.variable;
761 madwifi_set_wps_ie(void *priv, const u8 *ie, size_t len, u32 frametype) argument
773 memcpy(&(beac_ie->app_buf[0]), ie, len);
819 struct ieee80211req_wpaie ie; local
826 memset(&ie, 0, sizeof(ie));
827 memcpy(ie.wpa_macaddr, addr, IEEE80211_ADDR_LEN);
828 if (set80211priv(drv, IEEE80211_IOCTL_GETWPAIE, &ie, sizeof(ie))) {
[all...]
/external/wpa_supplicant_8/src/rsn_supp/
H A Dwpa.h117 int wpa_sm_set_assoc_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
120 int wpa_sm_set_ap_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
121 int wpa_sm_set_ap_rsn_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
204 static inline int wpa_sm_set_assoc_wpa_ie(struct wpa_sm *sm, const u8 *ie, argument
217 static inline int wpa_sm_set_ap_wpa_ie(struct wpa_sm *sm, const u8 *ie, argument
223 static inline int wpa_sm_set_ap_rsn_ie(struct wpa_sm *sm, const u8 *ie, argument
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new.h222 const u8 *ie, size_t ie_len, u32 ssi_signal);
495 const u8 *ie, size_t ie_len,
492 wpas_dbus_signal_preq(struct wpa_supplicant *wpa_s, const u8 *addr, const u8 *dst, const u8 *bssid, const u8 *ie, size_t ie_len, u32 ssi_signal) argument

Completed in 447 milliseconds

1234567