/external/wpa_supplicant_8/src/ap/ |
D | ieee802_11.c | 300 const struct ieee80211_mgmt *mgmt, size_t len) in handle_auth() argument 315 if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.auth)) { in handle_auth() 321 auth_alg = le_to_host16(mgmt->u.auth.auth_alg); in handle_auth() 322 auth_transaction = le_to_host16(mgmt->u.auth.auth_transaction); in handle_auth() 323 status_code = le_to_host16(mgmt->u.auth.status_code); in handle_auth() 324 fc = le_to_host16(mgmt->frame_control); in handle_auth() 326 if (len >= IEEE80211_HDRLEN + sizeof(mgmt->u.auth) + in handle_auth() 328 mgmt->u.auth.variable[0] == WLAN_EID_CHALLENGE && in handle_auth() 329 mgmt->u.auth.variable[1] == WLAN_AUTH_CHALLENGE_LEN) in handle_auth() 330 challenge = &mgmt->u.auth.variable[2]; in handle_auth() [all …]
|
D | wmm.c | 238 const struct ieee80211_mgmt *mgmt, in wmm_addts_req() argument 241 const u8 *end = ((const u8 *) mgmt) + len; in wmm_addts_req() 251 mgmt->u.action.u.wmm_action.dialog_token, in wmm_addts_req() 252 MAC2STR(mgmt->sa)); in wmm_addts_req() 257 wmm_send_action(hapd, mgmt->sa, tspec, WMM_ACTION_CODE_ADDTS_RESP, in wmm_addts_req() 258 mgmt->u.action.u.wmm_action.dialog_token, res); in wmm_addts_req() 263 const struct ieee80211_mgmt *mgmt, size_t len) in hostapd_wmm_action() argument 267 const u8 *pos = ((const u8 *) mgmt) + IEEE80211_HDRLEN + 4; in hostapd_wmm_action() 269 struct sta_info *sta = ap_get_sta(hapd, mgmt->sa); in hostapd_wmm_action() 275 hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211, in hostapd_wmm_action() [all …]
|
D | ieee802_11_shared.c | 52 struct ieee80211_mgmt mgmt; in ieee802_11_send_sa_query_req() local 60 os_memset(&mgmt, 0, sizeof(mgmt)); in ieee802_11_send_sa_query_req() 61 mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT, in ieee802_11_send_sa_query_req() 63 os_memcpy(mgmt.da, addr, ETH_ALEN); in ieee802_11_send_sa_query_req() 64 os_memcpy(mgmt.sa, hapd->own_addr, ETH_ALEN); in ieee802_11_send_sa_query_req() 65 os_memcpy(mgmt.bssid, hapd->own_addr, ETH_ALEN); in ieee802_11_send_sa_query_req() 66 mgmt.u.action.category = WLAN_ACTION_SA_QUERY; in ieee802_11_send_sa_query_req() 67 mgmt.u.action.u.sa_query_req.action = WLAN_SA_QUERY_REQUEST; in ieee802_11_send_sa_query_req() 68 os_memcpy(mgmt.u.action.u.sa_query_req.trans_id, trans_id, in ieee802_11_send_sa_query_req() 70 end = mgmt.u.action.u.sa_query_req.trans_id + WLAN_SA_QUERY_TR_ID_LEN; in ieee802_11_send_sa_query_req() [all …]
|
D | beacon.c | 296 const struct ieee80211_mgmt *mgmt, size_t len) in handle_probe_req() argument 306 ie = mgmt->u.probe_req.variable; in handle_probe_req() 307 if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.probe_req)) in handle_probe_req() 309 ie_len = len - (IEEE80211_HDRLEN + sizeof(mgmt->u.probe_req)); in handle_probe_req() 313 mgmt->sa, mgmt->da, mgmt->bssid, in handle_probe_req() 322 MAC2STR(mgmt->sa)); in handle_probe_req() 329 MAC2STR(mgmt->sa)); in handle_probe_req() 362 "broadcast SSID ignored", MAC2STR(mgmt->sa)); in handle_probe_req() 366 sta = ap_get_sta(hapd, mgmt->sa); in handle_probe_req() 385 if (!(mgmt->da[0] & 0x01)) { in handle_probe_req() [all …]
|
D | ap_list.c | 219 const struct ieee80211_mgmt *mgmt, in ap_list_process_beacon() argument 232 ap = ap_get_ap(iface, mgmt->bssid); in ap_list_process_beacon() 234 ap = ap_ap_add(iface, mgmt->bssid); in ap_list_process_beacon() 242 ap->beacon_int = le_to_host16(mgmt->u.beacon.beacon_int); in ap_list_process_beacon() 243 ap->capability = le_to_host16(mgmt->u.beacon.capab_info); in ap_list_process_beacon()
|
D | beacon.h | 22 const struct ieee80211_mgmt *mgmt, size_t len);
|
D | wmm.h | 26 const struct ieee80211_mgmt *mgmt, size_t len);
|
D | ap_list.h | 55 const struct ieee80211_mgmt *mgmt,
|
/external/wpa_supplicant_6/wpa_supplicant/ |
D | mlme.c | 238 struct ieee80211_mgmt *mgmt; in ieee80211_send_auth() local 240 buf = os_malloc(sizeof(*mgmt) + 6 + extra_len); in ieee80211_send_auth() 247 mgmt = (struct ieee80211_mgmt *) buf; in ieee80211_send_auth() 249 os_memset(mgmt, 0, 24 + 6); in ieee80211_send_auth() 250 mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT, in ieee80211_send_auth() 253 mgmt->frame_control |= host_to_le16(WLAN_FC_ISWEP); in ieee80211_send_auth() 254 os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN); in ieee80211_send_auth() 255 os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN); in ieee80211_send_auth() 256 os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN); in ieee80211_send_auth() 257 mgmt->u.auth.auth_alg = host_to_le16(wpa_s->mlme.auth_alg); in ieee80211_send_auth() [all …]
|
/external/wpa_supplicant_8/hostapd/ |
D | ctrl_iface.c | 159 struct ieee80211_mgmt *mgmt; in p2p_manager_disconnect() local 166 mgmt = os_zalloc(sizeof(*mgmt) + 100); in p2p_manager_disconnect() 167 if (mgmt == NULL) in p2p_manager_disconnect() 174 mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT, stype); in p2p_manager_disconnect() 175 os_memcpy(mgmt->da, addr, ETH_ALEN); in p2p_manager_disconnect() 176 os_memcpy(mgmt->sa, hapd->own_addr, ETH_ALEN); in p2p_manager_disconnect() 177 os_memcpy(mgmt->bssid, hapd->own_addr, ETH_ALEN); in p2p_manager_disconnect() 179 mgmt->u.deauth.reason_code = in p2p_manager_disconnect() 181 pos = (u8 *) (&mgmt->u.deauth.reason_code + 1); in p2p_manager_disconnect() 183 mgmt->u.disassoc.reason_code = in p2p_manager_disconnect() [all …]
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver_hostap.c | 1028 struct ieee80211_mgmt mgmt; in hostap_sta_deauth() local 1040 memset(&mgmt, 0, sizeof(mgmt)); in hostap_sta_deauth() 1041 mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT, in hostap_sta_deauth() 1043 memcpy(mgmt.da, addr, ETH_ALEN); in hostap_sta_deauth() 1044 memcpy(mgmt.sa, own_addr, ETH_ALEN); in hostap_sta_deauth() 1045 memcpy(mgmt.bssid, own_addr, ETH_ALEN); in hostap_sta_deauth() 1046 mgmt.u.deauth.reason_code = host_to_le16(reason); in hostap_sta_deauth() 1047 return hostap_send_mlme(drv, (u8 *) &mgmt, IEEE80211_HDRLEN + in hostap_sta_deauth() 1048 sizeof(mgmt.u.deauth), 0); in hostap_sta_deauth() 1075 struct ieee80211_mgmt mgmt; in hostap_sta_disassoc() local [all …]
|
D | driver_nl80211.c | 1010 const struct ieee80211_mgmt *mgmt; in mlme_event_auth() local 1013 mgmt = (const struct ieee80211_mgmt *) frame; in mlme_event_auth() 1014 if (len < 24 + sizeof(mgmt->u.auth)) { in mlme_event_auth() 1020 os_memcpy(drv->auth_bssid, mgmt->sa, ETH_ALEN); in mlme_event_auth() 1022 os_memcpy(event.auth.peer, mgmt->sa, ETH_ALEN); in mlme_event_auth() 1023 event.auth.auth_type = le_to_host16(mgmt->u.auth.auth_alg); in mlme_event_auth() 1024 event.auth.status_code = le_to_host16(mgmt->u.auth.status_code); in mlme_event_auth() 1025 if (len > 24 + sizeof(mgmt->u.auth)) { in mlme_event_auth() 1026 event.auth.ies = mgmt->u.auth.variable; in mlme_event_auth() 1027 event.auth.ies_len = len - 24 - sizeof(mgmt->u.auth); in mlme_event_auth() [all …]
|
D | driver_madwifi.c | 718 const struct ieee80211_mgmt *mgmt; in madwifi_raw_receive() local 724 if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.probe_req)) in madwifi_raw_receive() 726 mgmt = (const struct ieee80211_mgmt *) buf; in madwifi_raw_receive() 728 fc = le_to_host16(mgmt->frame_control); in madwifi_raw_receive() 734 event.rx_probe_req.sa = mgmt->sa; in madwifi_raw_receive() 735 event.rx_probe_req.da = mgmt->da; in madwifi_raw_receive() 736 event.rx_probe_req.bssid = mgmt->bssid; in madwifi_raw_receive() 737 event.rx_probe_req.ie = mgmt->u.probe_req.variable; in madwifi_raw_receive() 739 len - (IEEE80211_HDRLEN + sizeof(mgmt->u.probe_req)); in madwifi_raw_receive()
|
D | driver_test.c | 1910 const struct ieee80211_mgmt *mgmt; in wpa_driver_test_mlme() local 1949 mgmt = (const struct ieee80211_mgmt *) data; in wpa_driver_test_mlme() 1950 fc = le_to_host16(mgmt->frame_control); in wpa_driver_test_mlme() 1956 event.rx_probe_req.sa = mgmt->sa; in wpa_driver_test_mlme() 1957 event.rx_probe_req.da = mgmt->da; in wpa_driver_test_mlme() 1958 event.rx_probe_req.bssid = mgmt->bssid; in wpa_driver_test_mlme() 1959 event.rx_probe_req.ie = mgmt->u.probe_req.variable; in wpa_driver_test_mlme() 1961 data_len - (mgmt->u.probe_req.variable - data); in wpa_driver_test_mlme() 1966 p2p_probe_req_rx(drv->p2p, mgmt->sa, in wpa_driver_test_mlme() 1967 mgmt->da, mgmt->bssid, in wpa_driver_test_mlme() [all …]
|
D | driver_atheros.c | 739 const struct ieee80211_mgmt *mgmt; in atheros_raw_receive() local 745 if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.probe_req)) in atheros_raw_receive() 747 mgmt = (const struct ieee80211_mgmt *) buf; in atheros_raw_receive() 749 fc = le_to_host16(mgmt->frame_control); in atheros_raw_receive() 755 event.rx_probe_req.sa = mgmt->sa; in atheros_raw_receive() 756 event.rx_probe_req.da = mgmt->da; in atheros_raw_receive() 757 event.rx_probe_req.bssid = mgmt->bssid; in atheros_raw_receive() 758 event.rx_probe_req.ie = mgmt->u.probe_req.variable; in atheros_raw_receive() 760 len - (IEEE80211_HDRLEN + sizeof(mgmt->u.probe_req)); in atheros_raw_receive()
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | ap.c | 283 const struct ieee80211_mgmt *mgmt; in ap_public_action_rx() local 286 mgmt = (const struct ieee80211_mgmt *) buf; in ap_public_action_rx() 287 hdr_len = (const u8 *) &mgmt->u.action.u.vs_public_action.action - buf; in ap_public_action_rx() 290 wpas_p2p_rx_action(wpa_s, mgmt->da, mgmt->sa, mgmt->bssid, in ap_public_action_rx() 291 mgmt->u.action.category, in ap_public_action_rx() 292 &mgmt->u.action.u.vs_public_action.action, in ap_public_action_rx() 335 const struct ieee80211_mgmt *mgmt; in ap_vendor_action_rx() local 338 mgmt = (const struct ieee80211_mgmt *) buf; in ap_vendor_action_rx() 339 hdr_len = (const u8 *) &mgmt->u.action.u.vs_public_action.action - buf; in ap_vendor_action_rx() 342 wpas_p2p_rx_action(wpa_s, mgmt->da, mgmt->sa, mgmt->bssid, in ap_vendor_action_rx() [all …]
|
D | events.c | 2372 const struct ieee80211_mgmt *mgmt; local 2373 mgmt = (const struct ieee80211_mgmt *) 2375 fc = le_to_host16(mgmt->frame_control); 2379 const u8 *src = mgmt->sa; 2380 const u8 *ie = mgmt->u.probe_req.variable; 2382 (mgmt->u.probe_req.variable - 2384 wpas_p2p_probe_req_rx(wpa_s, src, mgmt->da, 2385 mgmt->bssid, ie, ie_len);
|
/external/bluetooth/bluez/ |
D | Makefile.am | 45 lib_headers = lib/bluetooth.h lib/hci.h lib/hci_lib.h lib/mgmt.h \
|
/external/openssl/crypto/objects/ |
D | objects.txt | 816 internet 2 : mgmt : Management
|
/external/srtp/doc/ |
D | rfc3711.txt | 1424 | key mgmt |-------->| key | session auth_key
|
/external/webkit/PerformanceTests/Parser/resources/ |
D | final-url-en | 13264 http://ops.fhwa.dot.gov/program_areas/sp-events-mgmt/handbook/chapter7_01.htm 32975 http://www.club-mgmt.com/course/spikeless.html 32976 http://www.club-mgmt.com/manager/admin.html 33656 http://www.commerce.otago.ac.nz/mgmt/nzjir/feature2402-02.html 51635 http://www.jr2.ox.ac.uk/bandolier/booth/mgmt/patsur2.html 56440 http://www.mgmt.utoronto.ca/~baum/mgt2005/valuable.html 65509 http://www.progressivedistributor.com/progressive/archives/Sales%20mgmt/double%20team.htm 66180 http://www.quickmba.com/mgmt/7hab/ 76609 http://www.txt-mgmt.com/spider.htm
|