/external/wpa_supplicant_8/src/rsn_supp/ |
D | wpa.h | 47 int (*update_ft_ies)(void *ctx, const u8 *md, const u8 *ies, 50 const u8 *ies, size_t ies_len); 312 int wpa_sm_set_ft_params(struct wpa_sm *sm, const u8 *ies, size_t ies_len); 314 int wpa_ft_process_response(struct wpa_sm *sm, const u8 *ies, size_t ies_len, 318 int wpa_ft_validate_reassoc_resp(struct wpa_sm *sm, const u8 *ies, 326 wpa_sm_set_ft_params(struct wpa_sm *sm, const u8 *ies, size_t ies_len) in wpa_sm_set_ft_params() argument 338 wpa_ft_process_response(struct wpa_sm *sm, const u8 *ies, size_t ies_len, in wpa_ft_process_response() argument 350 wpa_ft_validate_reassoc_resp(struct wpa_sm *sm, const u8 *ies, size_t ies_len, in wpa_ft_validate_reassoc_resp() argument 360 void wpa_tdls_ap_ies(struct wpa_sm *sm, const u8 *ies, size_t len); 361 void wpa_tdls_assoc_resp_ies(struct wpa_sm *sm, const u8 *ies, size_t len);
|
D | wpa_ft.c | 63 int wpa_sm_set_ft_params(struct wpa_sm *sm, const u8 *ies, size_t ies_len) in wpa_sm_set_ft_params() argument 70 if (wpa_ft_parse_ies(ies, ies_len, &ft) < 0) in wpa_sm_set_ft_params() 372 int wpa_ft_process_response(struct wpa_sm *sm, const u8 *ies, size_t ies_len, in wpa_ft_process_response() argument 385 wpa_hexdump(MSG_DEBUG, "FT: Response IEs", ies, ies_len); in wpa_ft_process_response() 410 if (wpa_ft_parse_ies(ies, ies_len, &parse) < 0) { in wpa_ft_process_response() 656 int wpa_ft_validate_reassoc_resp(struct wpa_sm *sm, const u8 *ies, in wpa_ft_validate_reassoc_resp() argument 665 wpa_hexdump(MSG_DEBUG, "FT: Response IEs", ies, ies_len); in wpa_ft_validate_reassoc_resp() 674 if (wpa_ft_parse_ies(ies, ies_len, &parse) < 0) { in wpa_ft_validate_reassoc_resp()
|
D | wpa_i.h | 219 const u8 *ies, size_t ies_len) in wpa_sm_update_ft_ies() argument 222 return sm->ctx->update_ft_ies(sm->ctx->ctx, md, ies, ies_len); in wpa_sm_update_ft_ies() 228 const u8 *ies, size_t ies_len) in wpa_sm_send_ft_action() argument 232 ies, ies_len); in wpa_sm_send_ft_action()
|
/external/wpa_supplicant_8/src/common/ |
D | ieee802_11_common.c | 312 int ieee802_11_ie_count(const u8 *ies, size_t ies_len) in ieee802_11_ie_count() argument 317 if (ies == NULL) in ieee802_11_ie_count() 320 pos = ies; in ieee802_11_ie_count() 321 end = ies + ies_len; in ieee802_11_ie_count() 334 struct wpabuf * ieee802_11_vendor_ie_concat(const u8 *ies, size_t ies_len, in ieee802_11_vendor_ie_concat() argument 340 pos = ies; in ieee802_11_vendor_ie_concat() 341 end = ies + ies_len; in ieee802_11_vendor_ie_concat()
|
D | ieee802_11_common.h | 86 int ieee802_11_ie_count(const u8 *ies, size_t ies_len); 87 struct wpabuf * ieee802_11_vendor_ie_concat(const u8 *ies, size_t ies_len,
|
D | wpa_common.c | 238 int wpa_ft_parse_ies(const u8 *ies, size_t ies_len, in wpa_ft_parse_ies() argument 248 if (ies == NULL) in wpa_ft_parse_ies() 251 pos = ies; in wpa_ft_parse_ies() 252 end = ies + ies_len; in wpa_ft_parse_ies() 1006 int wpa_insert_pmkid(u8 *ies, size_t ies_len, const u8 *pmkid) in wpa_insert_pmkid() argument 1011 start = ies; in wpa_insert_pmkid() 1012 end = ies + ies_len; in wpa_insert_pmkid()
|
D | wpa_common.h | 367 int wpa_insert_pmkid(u8 *ies, size_t ies_len, const u8 *pmkid); 390 int wpa_ft_parse_ies(const u8 *ies, size_t ies_len, struct wpa_ft_ies *parse);
|
/external/wpa_supplicant_8/src/p2p/ |
D | p2p_dev_disc.c | 339 struct wpabuf *ies; in p2p_process_go_disc_req() local 345 ies = p2p_build_probe_resp_ies(p2p); in p2p_process_go_disc_req() 346 if (ies == NULL) in p2p_process_go_disc_req() 353 ies) < 0) { in p2p_process_go_disc_req() 358 wpabuf_free(ies); in p2p_process_go_disc_req()
|
D | p2p.c | 265 struct wpabuf *ies; in p2p_listen_in_find() local 300 ies = p2p_build_probe_resp_ies(p2p); in p2p_listen_in_find() 301 if (ies == NULL) in p2p_listen_in_find() 305 ies) < 0) { in p2p_listen_in_find() 310 wpabuf_free(ies); in p2p_listen_in_find() 317 struct wpabuf *ies; in p2p_listen() local 347 ies = p2p_build_probe_resp_ies(p2p); in p2p_listen() 348 if (ies == NULL) in p2p_listen() 351 if (p2p->cfg->start_listen(p2p->cfg->cb_ctx, freq, timeout, ies) < 0) { in p2p_listen() 355 wpabuf_free(ies); in p2p_listen() [all …]
|
D | p2p.h | 1231 struct os_time *rx_time, int level, const u8 *ies, 1486 int p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf, char *end); 1504 int p2p_parse_dev_addr(const u8 *ies, size_t ies_len, u8 *dev_addr); 1525 void p2p_scan_ie(struct p2p_data *p2p, struct wpabuf *ies, const u8 *dev_id);
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | sme.h | 20 const u8 *ies, size_t ies_len); 55 const u8 *ies, size_t ies_len) in sme_update_ft_ies() argument
|
D | wpas_glue.c | 470 const u8 *ies, size_t ies_len) in wpa_supplicant_update_ft_ies() argument 474 return sme_update_ft_ies(wpa_s, md, ies, ies_len); in wpa_supplicant_update_ft_ies() 475 return wpa_drv_update_ft_ies(wpa_s, md, ies, ies_len); in wpa_supplicant_update_ft_ies() 481 const u8 *ies, size_t ies_len) in wpa_supplicant_send_ft_action() argument 484 return wpa_drv_send_ft_action(wpa_s, action, target_ap, ies, ies_len); in wpa_supplicant_send_ft_action()
|
D | sme.c | 551 data->auth.ies, data->auth.ies_len); in sme_event_auth() 559 data->auth.status_code, data->auth.ies, in sme_event_auth() 614 edata.ft_ies.ies = data->auth.ies; in sme_event_auth() 724 const u8 *ies, size_t ies_len) in sme_update_ft_ies() argument 726 if (md == NULL || ies == NULL) { in sme_update_ft_ies() 736 wpa_hexdump(MSG_DEBUG, "SME: FT IEs", ies, ies_len); in sme_update_ft_ies() 741 os_memcpy(wpa_s->sme.ft_ies, ies, ies_len); in sme_update_ft_ies()
|
D | p2p_supplicant.h | 56 int wpas_p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf, 74 void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies);
|
D | driver_i.h | 259 const u8 *ies, size_t ies_len) in wpa_drv_update_ft_ies() argument 263 ies, ies_len); in wpa_drv_update_ft_ies() 269 const u8 *ies, size_t ies_len) in wpa_drv_send_ft_action() argument 273 target_ap, ies, ies_len); in wpa_drv_send_ft_action()
|
/external/wpa_supplicant_8/src/ap/ |
D | wpa_auth_ft.c | 489 const u8 *ies, size_t ies_len) in wpa_ft_process_rdie() argument 497 ies, ies_len); in wpa_ft_process_rdie() 512 if (ieee802_11_parse_elems((u8 *) ies, ies_len, &parse, 1) == in wpa_ft_process_rdie() 781 const u8 *ies, size_t ies_len, in wpa_ft_process_auth_req() argument 802 ies, ies_len); in wpa_ft_process_auth_req() 804 if (wpa_ft_parse_ies(ies, ies_len, &parse) < 0) { in wpa_ft_process_auth_req() 934 u16 auth_transaction, const u8 *ies, size_t ies_len, in wpa_ft_process_auth() argument 937 const u8 *ies, size_t ies_len), in wpa_ft_process_auth() 953 status = wpa_ft_process_auth_req(sm, ies, ies_len, &resp_ies, in wpa_ft_process_auth() 966 u16 wpa_ft_validate_reassoc(struct wpa_state_machine *sm, const u8 *ies, in wpa_ft_validate_reassoc() argument [all …]
|
D | wpa_auth.h | 272 u16 auth_transaction, const u8 *ies, size_t ies_len, 275 const u8 *ies, size_t ies_len), 277 u16 wpa_ft_validate_reassoc(struct wpa_state_machine *sm, const u8 *ies,
|
D | ieee802_11.c | 259 const u8 *ies, size_t ies_len) in send_auth_reply() argument 281 if (ies && ies_len) in send_auth_reply() 282 os_memcpy(reply->u.auth.variable, ies, ies_len); in send_auth_reply() 298 const u8 *ies, size_t ies_len) in handle_auth_ft_finish() argument 304 status, ies, ies_len); in handle_auth_ft_finish() 854 const u8 *ies, size_t ies_len, int reassoc) in check_assoc_ies() argument 861 if (ieee802_11_parse_elems(ies, ies_len, &elems, 1) == ParseFailed) { in check_assoc_ies() 924 sta->wps_ie = ieee802_11_vendor_ie_concat(ies, ies_len, in check_assoc_ies() 1020 resp = wpa_ft_validate_reassoc(sta->wpa_sm, ies, in check_assoc_ies() 1054 sta->p2p_ie = ieee802_11_vendor_ie_concat(ies, ies_len, in check_assoc_ies() [all …]
|
/external/webkit/Source/WebCore/html/ |
D | HTMLDetailsElement.idl | 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
|
D | HTMLProgressElement.idl | 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
/external/webkit/Source/WebCore/css/ |
D | MediaQueryListListener.idl | 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
|
D | MediaQueryList.idl | 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
|
/external/webkit/Source/WebCore/plugins/ |
D | DOMMimeType.idl | 2 Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
|
D | DOMMimeTypeArray.idl | 2 Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
|
D | DOMPluginArray.idl | 2 Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
|