Searched refs:p_List (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/sys/contrib/ncsw/etc/
H A Dncsw_list.c60 int NCSW_LIST_NumOfObjs(t_List *p_List) argument
65 if (!NCSW_LIST_IsEmpty(p_List))
66 NCSW_LIST_FOR_EACH(p_Tmp, p_List)
/freebsd-13-stable/sys/contrib/ncsw/inc/etc/
H A Dlist_ext.h79 @Param[in] p_List - A pointer to a list.
81 #define NCSW_LIST_FIRST(p_List) (p_List)->p_Next
82 #define NCSW_LIST_LAST(p_List) (p_List)->p_Prev
112 @Param[in] p_List - The list pointer.
114 #define INIT_LIST(p_List) NCSW_LIST_FIRST(p_List) = NCSW_LIST_LAST(p_List) = (p_List)
324 NCSW_LIST_IsEmpty(t_List *p_List) argument
[all...]
/freebsd-13-stable/sys/contrib/ncsw/Peripherals/FM/Pcd/
H A Dfm_cc.h394 t_Error FmPcdCcNodeTreeTryLock(t_Handle h_FmPcd,t_Handle h_FmPcdCcNode, t_List *p_List);
395 void FmPcdCcNodeTreeReleaseLock(t_Handle h_FmPcd, t_List *p_List);
H A Dfm_pcd.h473 void EnqueueNodeInfoToRelevantLst(t_List *p_List, t_CcNodeInformation *p_CcInfo, t_Handle h_Spinlock);
474 void DequeueNodeInfoFromRelevantLst(t_List *p_List, t_Handle h_Info, t_Handle h_Spinlock);
475 t_CcNodeInformation* FindNodeInfoInReleventLst(t_List *p_List, t_Handle h_Info, t_Handle h_Spinlock);
492 void ReleaseLst(t_List *p_List);
H A Dfm_cc.c99 static __inline__ t_FmPcdStatsObj* DequeueStatsObj(t_List *p_List) argument
104 if (!NCSW_LIST_IsEmpty(p_List))
106 p_Next = NCSW_LIST_FIRST(p_List);
115 static __inline__ void EnqueueStatsObj(t_List *p_List, argument
118 NCSW_LIST_AddToTail(&p_StatsObj->node, p_List);
121 static void FreeStatObjects(t_List *p_List, t_Handle h_FmMuram) argument
125 while (!NCSW_LIST_IsEmpty(p_List))
127 p_StatsObj = DequeueStatsObj(p_List);
1203 t_List *p_List)
1207 if (!NCSW_LIST_IsEmpty(p_List))
1202 DequeueAdditionalInfoFromRelevantLst( t_List *p_List) argument
1216 ReleaseLst(t_List *p_List) argument
4910 FindNodeInfoInReleventLst(t_List *p_List, t_Handle h_Info, t_Handle h_Spinlock) argument
4938 EnqueueNodeInfoToRelevantLst(t_List *p_List, t_CcNodeInformation *p_CcInfo, t_Handle h_Spinlock) argument
4965 DequeueNodeInfoFromRelevantLst(t_List *p_List, t_Handle h_Info, t_Handle h_Spinlock) argument
5824 FmPcdCcNodeTreeTryLock(t_Handle h_FmPcd, t_Handle h_FmPcdCcNode, t_List *p_List) argument
5865 FmPcdCcNodeTreeReleaseLock(t_Handle h_FmPcd, t_List *p_List) argument
[all...]

Completed in 120 milliseconds