Lines Matching refs:pe
65 struct peer_cfr *pe; in ucfg_cfr_start_capture() local
80 pe = wlan_objmgr_peer_get_comp_private_obj(peer, WLAN_UMAC_COMP_CFR); in ucfg_cfr_start_capture()
81 if (NULL == pe) { in ucfg_cfr_start_capture()
109 if (!(pe->request)) in ucfg_cfr_start_capture()
122 pe->bandwidth = params->bandwidth; in ucfg_cfr_start_capture()
123 pe->period = params->period; in ucfg_cfr_start_capture()
124 pe->capture_method = params->method; in ucfg_cfr_start_capture()
125 pe->request = PEER_CFR_CAPTURE_ENABLE; in ucfg_cfr_start_capture()
289 struct peer_cfr *pe; in cfr_iter_peer_handler() local
303 pe = wlan_objmgr_peer_get_comp_private_obj(peer, WLAN_UMAC_COMP_CFR); in cfr_iter_peer_handler()
304 if (!pe) { in cfr_iter_peer_handler()
309 if (pe->period && (pe->request == PEER_CFR_CAPTURE_ENABLE)) { in cfr_iter_peer_handler()
310 *cfr_capt_status = pe->request; in cfr_iter_peer_handler()
332 struct peer_cfr *pe; in ucfg_cfr_stop_capture() local
346 pe = wlan_objmgr_peer_get_comp_private_obj(peer, WLAN_UMAC_COMP_CFR); in ucfg_cfr_stop_capture()
347 if (pe == NULL) { in ucfg_cfr_stop_capture()
352 if ((pe->period) && (pe->request)) in ucfg_cfr_stop_capture()
360 pe->request = PEER_CFR_CAPTURE_DISABLE; in ucfg_cfr_stop_capture()