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

/freebsd-current/sys/contrib/ncsw/inc/etc/
H A Dlist_ext.h251 @Param[in] p_Entry - A pointer to the element to delete from the list.
258 static __inline__ void NCSW_LIST_Del(t_List *p_Entry) argument
260 NCSW_LIST_PREV(NCSW_LIST_NEXT(p_Entry)) = NCSW_LIST_PREV(p_Entry);
261 NCSW_LIST_NEXT(NCSW_LIST_PREV(p_Entry)) = NCSW_LIST_NEXT(p_Entry);
270 @Param[in] p_Entry - A pointer to the element to delete from the list.
274 static __inline__ void NCSW_LIST_DelAndInit(t_List *p_Entry) argument
276 NCSW_LIST_Del(p_Entry);
277 INIT_LIST(p_Entry);
291 NCSW_LIST_Move(t_List *p_Entry, t_List *p_Head) argument
308 NCSW_LIST_MoveToTail(t_List *p_Entry, t_List *p_Head) argument
[all...]

Completed in 64 milliseconds