/external/wpa_supplicant_6/wpa_supplicant/ |
mlme.h | 41 const u8 *ies, size_t ies_len); 44 const u8 *ies, size_t ies_len); 45 int ieee80211_sta_set_probe_req_ie(struct wpa_supplicant *wpa_s, const u8 *ies, 110 const u8 *ies, size_t ies_len) 118 const u8 *ies, size_t ies_len) 124 ieee80211_sta_set_probe_req_ie(struct wpa_supplicant *wpa_s, const u8 *ies,
|
wpa_supplicant_i.h | 195 /* The last AssocReq/Resp IEs */ 744 const u8 *ies, size_t ies_len) 748 ies, ies_len); 754 const u8 *ies, size_t ies_len) 758 target_ap, ies, ies_len); 763 const u8 *ies, size_t ies_len) 766 return wpa_s->driver->set_probe_req_ie(wpa_s->drv_priv, ies,
|
wpas_glue.c | 474 const u8 *ies, size_t ies_len) 478 return ieee80211_sta_update_ft_ies(wpa_s, md, ies, ies_len); 479 return wpa_drv_update_ft_ies(wpa_s, md, ies, ies_len); 485 const u8 *ies, size_t ies_len) 490 ies, ies_len); 491 return wpa_drv_send_ft_action(wpa_s, action, target_ap, ies, ies_len);
|
/external/wpa_supplicant_8/wpa_supplicant/ |
mlme.h | 45 const u8 *ies, size_t ies_len); 48 const u8 *ies, size_t ies_len); 106 const u8 *ies, size_t ies_len) 114 const u8 *ies, size_t ies_len)
|
sme.h | 26 const u8 *ies, size_t ies_len); 58 const u8 *ies, size_t ies_len)
|
wpas_glue.c | 489 const u8 *ies, size_t ies_len) 493 return ieee80211_sta_update_ft_ies(wpa_s, md, ies, ies_len); 495 return sme_update_ft_ies(wpa_s, md, ies, ies_len); 496 return wpa_drv_update_ft_ies(wpa_s, md, ies, ies_len); 502 const u8 *ies, size_t ies_len) 507 ies, ies_len); 508 return wpa_drv_send_ft_action(wpa_s, action, target_ap, ies, ies_len);
|
wps_supplicant.h | 55 int wpas_wps_scan_result_text(const u8 *ies, size_t ies_len, char *pos,
|
p2p_supplicant.h | 50 int wpas_p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf, 65 void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies);
|
sme.c | 300 wpa_hexdump(MSG_MSGDUMP, "SME: Authentication response IEs", 301 data->auth.ies, data->auth.ies_len); 343 edata.ft_ies.ies = data->auth.ies; 392 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Could not parse own IEs?!"); 426 const u8 *ies, size_t ies_len) 428 if (md == NULL || ies == NULL) { 438 wpa_hexdump(MSG_DEBUG, "SME: FT IEs", ies, ies_len); 443 os_memcpy(wpa_s->sme.ft_ies, ies, ies_len) [all...] |
/external/wpa_supplicant_8/src/common/ |
ieee802_11_common.h | 77 int ieee802_11_ie_count(const u8 *ies, size_t ies_len); 78 struct wpabuf * ieee802_11_vendor_ie_concat(const u8 *ies, size_t ies_len,
|
ieee802_11_common.c | 68 * IEs. 144 * @start: Pointer to the start of IEs 173 wpa_hexdump(MSG_MSGDUMP, "IEs", start, len); 283 int ieee802_11_ie_count(const u8 *ies, size_t ies_len) 288 if (ies == NULL) 291 pos = ies; 292 end = ies + ies_len; 305 struct wpabuf * ieee802_11_vendor_ie_concat(const u8 *ies, size_t ies_len, 311 pos = ies; 312 end = ies + ies_len [all...] |
/external/wpa_supplicant_8/src/rsn_supp/ |
wpa.h | 53 int (*update_ft_ies)(void *ctx, const u8 *md, const u8 *ies, 56 const u8 *ies, size_t ies_len); 293 int wpa_sm_set_ft_params(struct wpa_sm *sm, const u8 *ies, size_t ies_len); 295 int wpa_ft_process_response(struct wpa_sm *sm, const u8 *ies, size_t ies_len, 299 int wpa_ft_validate_reassoc_resp(struct wpa_sm *sm, const u8 *ies, 307 wpa_sm_set_ft_params(struct wpa_sm *sm, const u8 *ies, size_t ies_len) 319 wpa_ft_process_response(struct wpa_sm *sm, const u8 *ies, size_t ies_len, 331 wpa_ft_validate_reassoc_resp(struct wpa_sm *sm, const u8 *ies, size_t ies_len, 341 void wpa_tdls_ap_ies(struct wpa_sm *sm, const u8 *ies, size_t len); 342 void wpa_tdls_assoc_resp_ies(struct wpa_sm *sm, const u8 *ies, size_t len) [all...] |
wpa_ft.c | 49 static int wpa_ft_parse_ies(const u8 *ies, size_t ies_len, 91 * @ies: Association Response IEs or %NULL to clear FT parameters 92 * @ies_len: Length of ies buffer in octets 95 int wpa_sm_set_ft_params(struct wpa_sm *sm, const u8 *ies, size_t ies_len) 102 if (wpa_ft_parse_ies(ies, ies_len, &ft) < 0) 163 * wpa_ft_gen_req_ies - Generate FT (IEEE 802.11r) IEs for Auth/ReAssoc Request 165 * @len: Buffer for returning the length of the IEs 173 * Returns: Pointer to buffer with IEs or %NULL on failure 399 static int wpa_ft_parse_ies(const u8 *ies, size_t ies_len [all...] |
wpa_i.h | 222 const u8 *ies, size_t ies_len) 225 return sm->ctx->update_ft_ies(sm->ctx->ctx, md, ies, ies_len); 231 const u8 *ies, size_t ies_len) 235 ies, ies_len);
|
/external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/ |
wpa.h | 60 int (*update_ft_ies)(void *ctx, const u8 *md, const u8 *ies, 63 const u8 *ies, size_t ies_len); 278 int wpa_ft_process_response(struct wpa_sm *sm, const u8 *ies, size_t ies_len, 281 int wpa_ft_validate_reassoc_resp(struct wpa_sm *sm, const u8 *ies, 300 wpa_ft_process_response(struct wpa_sm *sm, const u8 *ies, size_t ies_len, 312 wpa_ft_validate_reassoc_resp(struct wpa_sm *sm, const u8 *ies, size_t ies_len,
|
wpa_i.h | 209 const u8 *ies, size_t ies_len) 212 return sm->ctx->update_ft_ies(sm->ctx->ctx, md, ies, ies_len); 218 const u8 *ies, size_t ies_len) 222 ies, ies_len);
|
wpa_ft.c | 108 * wpa_ft_gen_req_ies - Generate FT (IEEE 802.11r) IEs for Auth Request 110 * @len: Buffer for returning the length of the IEs 115 * Returns: Pointer to buffer with IEs or %NULL on failure 343 static int wpa_ft_parse_ies(const u8 *ies, size_t ies_len, 351 if (ies == NULL) 354 pos = ies; 355 end = ies + ies_len; 454 int wpa_ft_process_response(struct wpa_sm *sm, const u8 *ies, size_t ies_len, 466 wpa_hexdump(MSG_DEBUG, "FT: Response IEs", ies, ies_len) [all...] |
/external/wpa_supplicant_8/src/p2p/ |
p2p_dev_disc.c | 345 struct wpabuf *ies; local 351 ies = p2p_build_probe_resp_ies(p2p); 352 if (ies == NULL) 359 ies) < 0) { 364 wpabuf_free(ies);
|
p2p.h | 409 * pointer can be %NULL). The WPS and P2P IEs to be added for Probe 465 * the IEs from probe_resp_ie need to be added to the end of the Probe [all...] |
p2p.c | 165 struct wpabuf *ies; local 187 ies = p2p_build_probe_resp_ies(p2p); 188 if (ies == NULL) 192 ies) < 0) { 197 wpabuf_free(ies); 204 struct wpabuf *ies; local 228 ies = p2p_build_probe_resp_ies(p2p); 229 if (ies == NULL) 232 if (p2p->cfg->start_listen(p2p->cfg->cb_ctx, freq, timeout, ies) < 0) { 236 wpabuf_free(ies); 1663 struct wpabuf *ies; local [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/drivers/ |
driver.h | 100 * If the driver does not support reporting all IEs, the IE data structure is 101 * constructed of the IEs that are available. This field will also need to 103 * report all IEs to make it easier to support future additions. 115 /* followed by ie_len octets of IEs */ 237 * for fast transition, this parameter is set to include the IEs that 239 * update_ft_ies() handler is called to update the IEs for further 242 * The driver should use these IEs only if the target AP is advertising 245 * In ap_scan=2 mode, the driver can use these IEs when moving to a new 246 * AP after the initial association. These IEs can only be used if the 250 * The driver is responsible for reporting the FT IEs received from th 1304 const u8 *ies; member in struct:wpa_event_data::ft_ies [all...] |
/external/wpa_supplicant_8/src/ap/ |
wpa_auth_ft.c | 50 static int wpa_ft_parse_ies(const u8 *ies, size_t ies_len, 504 const u8 *ies, size_t ies_len) 512 ies, ies_len); 527 if (ieee802_11_parse_elems((u8 *) ies, ies_len, &parse, 1) == 529 wpa_printf(MSG_DEBUG, "FT: Failed to parse request IEs"); 774 static int wpa_ft_parse_ies(const u8 *ies, size_t ies_len, 784 if (ies == NULL) 787 pos = ies; 788 end = ies + ies_len; 829 * Check that the protected IE count matches with IEs included in th 1242 const u8 *ies; local [all...] |
wpa_auth.h | 273 u16 auth_transaction, const u8 *ies, size_t ies_len, 276 const u8 *ies, size_t ies_len), 278 u16 wpa_ft_validate_reassoc(struct wpa_state_machine *sm, const u8 *ies,
|
ieee802_11.c | 296 const u8 *ies, size_t ies_len) 318 if (ies && ies_len) 319 os_memcpy(reply->u.auth.variable, ies, ies_len); 335 const u8 *ies, size_t ies_len) 341 status, ies, ies_len); 654 const u8 *ies, size_t ies_len, int reassoc) 661 if (ieee802_11_parse_elems(ies, ies_len, &elems, 1) == ParseFailed) { 710 sta->wps_ie = ieee802_11_vendor_ie_concat(ies, ies_len, 802 resp = wpa_ft_validate_reassoc(sta->wpa_sm, ies, 826 sta->p2p_ie = ieee802_11_vendor_ie_concat(ies, ies_len [all...] |
/external/webkit/Source/WebCore/plugins/win/ |
PaintHooks.asm | 2 ; Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
|