Searched refs:assoc_resp (Results 1 – 3 of 3) sorted by relevance
461 nxp_wifi_assoc_event_mlme_t *assoc_resp, in wifi_nxp_wpa_supp_event_proc_assoc_resp() argument482 frame = (const unsigned char *)assoc_resp->frame.frame; in wifi_nxp_wpa_supp_event_proc_assoc_resp()483 frame_len = assoc_resp->frame.frame_len; in wifi_nxp_wpa_supp_event_proc_assoc_resp()484 req_frame = (const unsigned char *)assoc_resp->req_ie; in wifi_nxp_wpa_supp_event_proc_assoc_resp()491 if (frame_len < 24 + sizeof(mgmt->u.assoc_resp)) in wifi_nxp_wpa_supp_event_proc_assoc_resp()499 status = le_to_host16(mgmt->u.assoc_resp.status_code); in wifi_nxp_wpa_supp_event_proc_assoc_resp()509 if (frame_len > 24 + sizeof(mgmt->u.assoc_resp)) in wifi_nxp_wpa_supp_event_proc_assoc_resp()511 event.assoc_reject.resp_ies = (unsigned char *)mgmt->u.assoc_resp.variable; in wifi_nxp_wpa_supp_event_proc_assoc_resp()512 event.assoc_reject.resp_ies_len = (frame_len - 24 - sizeof(mgmt->u.assoc_resp)); in wifi_nxp_wpa_supp_event_proc_assoc_resp()535 if (frame_len > 24 + sizeof(mgmt->u.assoc_resp)) in wifi_nxp_wpa_supp_event_proc_assoc_resp()[all …]
3446 nxp_wifi_assoc_event_mlme_t *assoc_resp = &wm_wifi.assoc_resp; in wifi_process_cmd_response() local3447 memset(assoc_resp, 0, sizeof(nxp_wifi_assoc_event_mlme_t)); in wifi_process_cmd_response()3457 assoc_resp->frame.frame_len = resp->size - S_DS_GEN; in wifi_process_cmd_response()3458 if (assoc_resp->frame.frame_len > (int)sizeof(assoc_resp->frame.frame)) in wifi_process_cmd_response()3461 assoc_resp->frame.frame_len, sizeof(assoc_resp->frame.frame)); in wifi_process_cmd_response()3462 assoc_resp->frame.frame_len = 0; in wifi_process_cmd_response()3467 memcpy(assoc_resp->frame.frame, passoc_rsp1, assoc_resp->frame.frame_len); in wifi_process_cmd_response()3469 … if (pmpriv->assoc_req_size && (pmpriv->assoc_req_size <= (int)sizeof(assoc_resp->req_ie))) in wifi_process_cmd_response()3471 assoc_resp->req_ie_len = pmpriv->assoc_req_size; in wifi_process_cmd_response()3473 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