Searched refs:assoc_resp (Results 1 – 3 of 3) sorted by relevance
410 nxp_wifi_assoc_event_mlme_t *assoc_resp, in wifi_nxp_wpa_supp_event_proc_assoc_resp() argument431 frame = (const unsigned char *)assoc_resp->frame.frame; in wifi_nxp_wpa_supp_event_proc_assoc_resp()432 frame_len = assoc_resp->frame.frame_len; in wifi_nxp_wpa_supp_event_proc_assoc_resp()433 req_frame = (const unsigned char *)assoc_resp->req_ie; in wifi_nxp_wpa_supp_event_proc_assoc_resp()440 if (frame_len < 24 + sizeof(mgmt->u.assoc_resp)) in wifi_nxp_wpa_supp_event_proc_assoc_resp()448 status = le_to_host16(mgmt->u.assoc_resp.status_code); in wifi_nxp_wpa_supp_event_proc_assoc_resp()458 if (frame_len > 24 + sizeof(mgmt->u.assoc_resp)) in wifi_nxp_wpa_supp_event_proc_assoc_resp()460 event.assoc_reject.resp_ies = (unsigned char *)mgmt->u.assoc_resp.variable; in wifi_nxp_wpa_supp_event_proc_assoc_resp()461 event.assoc_reject.resp_ies_len = (frame_len - 24 - sizeof(mgmt->u.assoc_resp)); in wifi_nxp_wpa_supp_event_proc_assoc_resp()484 if (frame_len > 24 + sizeof(mgmt->u.assoc_resp)) in wifi_nxp_wpa_supp_event_proc_assoc_resp()[all …]
3459 nxp_wifi_assoc_event_mlme_t *assoc_resp = &wm_wifi.assoc_resp; in wifi_process_cmd_response() local3460 memset(assoc_resp, 0, sizeof(nxp_wifi_assoc_event_mlme_t)); in wifi_process_cmd_response()3470 assoc_resp->frame.frame_len = resp->size - S_DS_GEN; in wifi_process_cmd_response()3471 if (assoc_resp->frame.frame_len > (int)sizeof(assoc_resp->frame.frame)) in wifi_process_cmd_response()3474 assoc_resp->frame.frame_len, sizeof(assoc_resp->frame.frame)); in wifi_process_cmd_response()3475 assoc_resp->frame.frame_len = 0; in wifi_process_cmd_response()3480 memcpy(assoc_resp->frame.frame, passoc_rsp1, assoc_resp->frame.frame_len); in wifi_process_cmd_response()3482 … if (pmpriv->assoc_req_size && (pmpriv->assoc_req_size <= (int)sizeof(assoc_resp->req_ie))) in wifi_process_cmd_response()3484 assoc_resp->req_ie_len = pmpriv->assoc_req_size; in wifi_process_cmd_response()3486 memcpy(assoc_resp->req_ie, pmpriv->assoc_req_buf, assoc_resp->req_ie_len); in wifi_process_cmd_response()[all …]
221 nxp_wifi_assoc_event_mlme_t assoc_resp; member