Lines Matching defs:oldList
292 * @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)
302 UTILS_DL_LIST *oldListHead = oldList->pstNext;
303 UTILS_DL_LIST *oldListTail = oldList;
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)
334 UtilsListAddList(oldList->pstPrev, newList);
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)
358 UtilsListAddList(oldList, newList);