Home
last modified time | relevance | path

Searched refs:pEntry (Results 1 – 9 of 9) sorted by relevance

/wlan-driver/qcacld-3.0/core/sme/src/csr/ !
H A Dcsr_link_list.c37 static inline void csr_list_remove_entry(tListElem *pEntry) in csr_list_remove_entry() argument
42 pLast = pEntry->last; in csr_list_remove_entry()
43 pNext = pEntry->next; in csr_list_remove_entry()
50 tListElem *pEntry; in csr_list_remove_head() local
53 pEntry = pHead->next; in csr_list_remove_head()
54 pNext = pEntry->next; in csr_list_remove_head()
58 return pEntry; in csr_list_remove_head()
63 tListElem *pEntry; in csr_list_remove_tail() local
66 pEntry = pHead->last; in csr_list_remove_tail()
67 pLast = pEntry->last; in csr_list_remove_tail()
[all …]
H A Dcsr_api_scan.c84 tListElem *pEntry; in csr_ll_scan_purge_result() local
87 while ((pEntry = csr_ll_remove_head(pList, LL_ACCESS_NOLOCK)) != NULL) { in csr_ll_scan_purge_result()
88 bss_desc = GET_BASE_ADDR(pEntry, struct tag_csrscan_result, in csr_ll_scan_purge_result()
134 tListElem *pEntry; in csr_purge_channel_power() local
141 while ((pEntry = csr_ll_remove_head(pChannelList, in csr_purge_channel_power()
143 pChannelSet = GET_BASE_ADDR(pEntry, in csr_purge_channel_power()
428 tListElem *pEntry; in csr_scan_result_get_first() local
435 pEntry = csr_ll_peek_head(&pResultList->List, LL_ACCESS_NOLOCK); in csr_scan_result_get_first()
436 if (pEntry) { in csr_scan_result_get_first()
437 pResult = GET_BASE_ADDR(pEntry, struct in csr_scan_result_get_first()
[all …]
H A Dcsr_api_roam.c4529 tListElem *pEntry; in csr_roam_wm_status_change_complete() local
4532 pEntry = csr_nonscan_active_ll_peek_head(mac, LL_ACCESS_LOCK); in csr_roam_wm_status_change_complete()
4533 if (pEntry) { in csr_roam_wm_status_change_complete()
4534 pCommand = GET_BASE_ADDR(pEntry, tSmeCmd, Link); in csr_roam_wm_status_change_complete()
4538 if (csr_nonscan_active_ll_remove_entry(mac, pEntry, in csr_roam_wm_status_change_complete()
/wlan-driver/qcacld-3.0/core/sme/inc/ !
H A Dcsr_link_list.h74 void csr_ll_insert_head(tDblLinkList *pList, tListElem *pEntry,
76 void csr_ll_insert_tail(tDblLinkList *pList, tListElem *pEntry,
79 void csr_ll_insert_entry(tDblLinkList *pList, tListElem *pEntry,
89 tListElem *csr_ll_next(tDblLinkList *pList, tListElem *pEntry,
91 tListElem *csr_ll_previous(tDblLinkList *pList, tListElem *pEntry,
/wlan-driver/qca-wifi-host-cmn/htc/ !
H A Dhtc.c589 struct htc_service_tx_credit_allocation *pEntry, in htc_setup_epping_credit_allocation() argument
595 pEntry++; in htc_setup_epping_credit_allocation()
596 pEntry->service_id = WMI_DATA_BE_SVC; in htc_setup_epping_credit_allocation()
597 pEntry->CreditAllocation = (credits >> 1); in htc_setup_epping_credit_allocation()
599 pEntry++; in htc_setup_epping_credit_allocation()
600 pEntry->service_id = WMI_DATA_BK_SVC; in htc_setup_epping_credit_allocation()
601 pEntry->CreditAllocation = (credits >> 1); in htc_setup_epping_credit_allocation()
604 pEntry++; in htc_setup_epping_credit_allocation()
605 pEntry->service_id = WMI_DATA_BE_SVC; in htc_setup_epping_credit_allocation()
606 pEntry->CreditAllocation = credits; in htc_setup_epping_credit_allocation()
[all …]
H A Ddl_list.h68 const DL_LIST *pEntry) in dl_list_is_entry_in_list() argument
72 if (pList == pEntry) in dl_list_is_entry_in_list()
76 if (pTmp == pEntry) in dl_list_is_entry_in_list()
/wlan-driver/qcacld-3.0/core/sme/src/qos/ !
H A Dsme_qos.c315 tListElem *pEntry);
410 static QDF_STATUS sme_qos_setup_fnp(struct mac_context *mac, tListElem *pEntry);
412 tListElem *pEntry);
413 static QDF_STATUS sme_qos_modify_fnp(struct mac_context *mac, tListElem *pEntry);
415 *pEntry);
417 tListElem *pEntry);
419 *pEntry);
421 *pEntry);
1570 tListElem *pEntry = NULL; in sme_qos_internal_modify_req() local
1593 pEntry = sme_qos_find_in_flow_list(search_key); in sme_qos_internal_modify_req()
[all …]
/wlan-driver/qcacld-3.0/core/sme/src/rrm/ !
H A Dsme_rrm.c86 tListElem *pEntry; in rrm_ll_purge_neighbor_cache() local
90 while ((pEntry = csr_ll_remove_head(pList, LL_ACCESS_NOLOCK)) != NULL) { in rrm_ll_purge_neighbor_cache()
92 GET_BASE_ADDR(pEntry, tRrmNeighborReportDesc, List); in rrm_ll_purge_neighbor_cache()
1876 tListElem *pEntry; in rrm_store_neighbor_rpt_by_roam_score() local
1902 pEntry = csr_ll_peek_head(&pSmeRrmContext->neighborReportCache, in rrm_store_neighbor_rpt_by_roam_score()
1904 while (pEntry) { in rrm_store_neighbor_rpt_by_roam_score()
1905 pTempNeighborReportDesc = GET_BASE_ADDR(pEntry, in rrm_store_neighbor_rpt_by_roam_score()
1910 pEntry = csr_ll_next(&pSmeRrmContext-> in rrm_store_neighbor_rpt_by_roam_score()
1911 neighborReportCache, pEntry, LL_ACCESS_LOCK); in rrm_store_neighbor_rpt_by_roam_score()
1914 if (pEntry) in rrm_store_neighbor_rpt_by_roam_score()
[all …]
/wlan-driver/qcacld-3.0/core/sme/src/common/ !
H A Dsme_api.c413 tListElem *pEntry; in sme_get_command_buffer() local
416 pEntry = csr_ll_remove_head(&mac->sme.sme_cmd_freelist, LL_ACCESS_LOCK); in sme_get_command_buffer()
422 if (pEntry) { in sme_get_command_buffer()
423 pRetCmd = GET_BASE_ADDR(pEntry, tSmeCmd, Link); in sme_get_command_buffer()
430 pEntry = csr_nonscan_active_ll_peek_head(mac, LL_ACCESS_LOCK); in sme_get_command_buffer()
431 if (pEntry) in sme_get_command_buffer()
432 pTempCmd = GET_BASE_ADDR(pEntry, tSmeCmd, Link); in sme_get_command_buffer()
445 pEntry = in sme_get_command_buffer()
448 while (pEntry && !sme_command_queue_full) { in sme_get_command_buffer()
449 pTempCmd = GET_BASE_ADDR(pEntry, tSmeCmd, Link); in sme_get_command_buffer()
[all …]