Home
last modified time | relevance | path

Searched refs:newList (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/commonlibrary/utils_lite/include/
H A Dutils_list.h300 static inline void UtilsListAddList(UTILS_DL_LIST *oldList, UTILS_DL_LIST *newList) in UtilsListAddList() argument
304 UTILS_DL_LIST *newListHead = newList; in UtilsListAddList()
305 UTILS_DL_LIST *newListTail = newList->pstPrev; in UtilsListAddList()
332 static inline void UtilsListTailInsertList(UTILS_DL_LIST *oldList, UTILS_DL_LIST *newList) in UtilsListTailInsertList() argument
334 UtilsListAddList(oldList->pstPrev, newList); in UtilsListTailInsertList()
356 static inline void UtilsListHeadInsertList(UTILS_DL_LIST *oldList, UTILS_DL_LIST *newList) in UtilsListHeadInsertList() argument
358 UtilsListAddList(oldList, newList); in UtilsListHeadInsertList()
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/stack/platform/src/
H A Dlist.c45 List *newList = (List *)calloc(1, (sizeof(List))); in ListCreate() local
46 if (newList != NULL) { in ListCreate()
47 DL_ListInit(&newList->dlList); in ListCreate()
48 newList->cb = cb; in ListCreate()
50 return newList; in ListCreate()
/ohos5.0/base/security/dataclassification/frameworks/datatransmitmgr/
H A Ddev_slinfo_list.c51 …struct DATASLListParams *newList = (struct DATASLListParams*)malloc(sizeof(struct DATASLListParams… in PushListNode() local
52 if (newList == NULL) { in PushListNode()
57 UpdateListNode(newList, list->prev, list); in PushListNode()
58 newList->callbackParams = callbackParams; in PushListNode()
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/struct/
H A Djs_struct.ts86 let newList: number[] = [];
87 newList = array1.filter((val) => {
90 if (newList.length === array2.length) {