Home
last modified time | relevance | path

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

/commonlibrary/utils_lite/include/
H A Dutils_list.h292 * @param oldList [IN] Doubly linked list where the new list is inserted.
300 static inline void UtilsListAddList(UTILS_DL_LIST *oldList, UTILS_DL_LIST *newList) in UtilsListAddList() argument
302 UTILS_DL_LIST *oldListHead = oldList->pstNext; in UtilsListAddList()
303 UTILS_DL_LIST *oldListTail = oldList; in UtilsListAddList()
324 * @param oldList [IN] Doubly linked list where the new list is inserted.
332 static inline void UtilsListTailInsertList(UTILS_DL_LIST *oldList, UTILS_DL_LIST *newList) in UtilsListTailInsertList() argument
334 UtilsListAddList(oldList->pstPrev, newList); in UtilsListTailInsertList()
348 * @param oldList [IN] Doubly linked list where the new list is inserted.
356 static inline void UtilsListHeadInsertList(UTILS_DL_LIST *oldList, UTILS_DL_LIST *newList) in UtilsListHeadInsertList() argument
358 UtilsListAddList(oldList, newLis in UtilsListHeadInsertList()
[all...]

Completed in 1 milliseconds