Lines Matching refs:pparm

5243 	struct joinbss_parm *pparm = (struct joinbss_parm *)pbuf;  in createbss_hdl()  local
5252 if (pparm->network.infrastructure_mode == Ndis802_11IBSS) { in createbss_hdl()
5526 struct sitesurvey_parm *pparm = (struct sitesurvey_parm *)pbuf; in sitesurvey_cmd_hdl() local
5538 if (pparm->ssid[i].ssid_length) { in sitesurvey_cmd_hdl()
5539 memcpy(pmlmeext->sitesurvey_res.ssid[i].ssid, pparm->ssid[i].ssid, IW_ESSID_MAX_SIZE); in sitesurvey_cmd_hdl()
5540 pmlmeext->sitesurvey_res.ssid[i].ssid_length = pparm->ssid[i].ssid_length; in sitesurvey_cmd_hdl()
5548 , pparm->ch, pparm->ch_num in sitesurvey_cmd_hdl()
5551 pmlmeext->sitesurvey_res.scan_mode = pparm->scan_mode; in sitesurvey_cmd_hdl()
5597 struct setauth_parm *pparm = (struct setauth_parm *)pbuf; in setauth_hdl() local
5601 if (pparm->mode < 4) in setauth_hdl()
5602 pmlmeinfo->auth_algo = pparm->mode; in setauth_hdl()
5611 struct setkey_parm *pparm = (struct setkey_parm *)pbuf; in setkey_hdl() local
5618 if (pparm->set_tx) in setkey_hdl()
5619 pmlmeinfo->key_index = pparm->keyid; in setkey_hdl()
5621 cam_id = rtw_camid_alloc(padapter, NULL, pparm->keyid); in setkey_hdl()
5630 ctrl = BIT(15) | BIT6 | ((pparm->algorithm) << 2) | pparm->keyid; in setkey_hdl()
5631 write_cam(padapter, cam_id, ctrl, addr, pparm->key); in setkey_hdl()
5634 cam_id, MAC_ARG(addr), pparm->keyid, in setkey_hdl()
5635 security_type_str(pparm->algorithm)); in setkey_hdl()
5654 struct set_stakey_parm *pparm = (struct set_stakey_parm *)pbuf; in set_stakey_hdl() local
5658 if (pparm->algorithm == _NO_PRIVACY_) in set_stakey_hdl()
5661 psta = rtw_get_stainfo(pstapriv, pparm->addr); in set_stakey_hdl()
5664 __func__, MAC_ARG(pparm->addr)); in set_stakey_hdl()
5669 pmlmeinfo->enc_algo = pparm->algorithm; in set_stakey_hdl()
5675 if (pparm->algorithm == _NO_PRIVACY_) { in set_stakey_hdl()
5676 while ((cam_id = rtw_camid_search(padapter, pparm->addr, -1)) >= 0) { in set_stakey_hdl()
5679 MAC_ARG(pparm->addr), cam_id); in set_stakey_hdl()
5686 cam_id, MAC_ARG(pparm->addr), pparm->keyid, in set_stakey_hdl()
5687 security_type_str(pparm->algorithm)); in set_stakey_hdl()
5688 ctrl = BIT(15) | ((pparm->algorithm) << 2) | pparm->keyid; in set_stakey_hdl()
5689 write_cam(padapter, cam_id, ctrl, pparm->addr, pparm->key); in set_stakey_hdl()
5699 struct addBaReq_parm *pparm = (struct addBaReq_parm *)pbuf; in add_ba_hdl() local
5703 struct sta_info *psta = rtw_get_stainfo(&padapter->stapriv, pparm->addr); in add_ba_hdl()
5713 issue_action_BA(padapter, pparm->addr, WLAN_ACTION_ADDBA_REQ, (u16)pparm->tid); in add_ba_hdl()
5717 psta->htpriv.candidate_tid_bitmap &= ~BIT(pparm->tid); in add_ba_hdl()