Home
last modified time | relevance | path

Searched refs:listStatus (Results 1 – 3 of 3) sorted by relevance

/hal_nxp-3.5.0/mcux/mcux-sdk/components/lists/
Dfsl_component_generic_list.c34 list_status_t listStatus = kLIST_Ok; in LIST_Error_Check() local
40 listStatus = kLIST_Full; /*List is full*/ in LIST_Error_Check()
50 listStatus = kLIST_DuplicateError; in LIST_Error_Check()
57 return listStatus; in LIST_Error_Check()
127 list_status_t listStatus = kLIST_Ok; in LIST_AddTail() local
129 listStatus = LIST_Error_Check(list, element); in LIST_AddTail()
130 if (listStatus == kLIST_Ok) /* Avoiding list status error */ in LIST_AddTail()
151 return listStatus; in LIST_AddTail()
173 list_status_t listStatus = kLIST_Ok; in LIST_AddHead() local
175 listStatus = LIST_Error_Check(list, element); in LIST_AddHead()
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/components/messaging/
Dfsl_component_messaging.c47 list_status_t listStatus; in MSG_QueueAddTail() local
54 listStatus = LIST_AddTail(msgQueue, (list_element_t *)msg); in MSG_QueueAddTail()
56 …return ((list_status_t)kLIST_Ok == listStatus) ? (messaging_status_t)kMSG_Success : (messaging_sta… in MSG_QueueAddTail()
61 list_status_t listStatus; in MSG_QueueAddHead() local
68 listStatus = LIST_AddHead(msgQueue, (list_element_t *)msg); in MSG_QueueAddHead()
70 …return ((list_status_t)kLIST_Ok == listStatus) ? (messaging_status_t)kMSG_Success : (messaging_sta… in MSG_QueueAddHead()
77 list_status_t listStatus; in MSG_QueueAddPrev() local
85 listStatus = LIST_AddPrevElement((list_element_t *)pElem, (list_element_t *)pNewElem); in MSG_QueueAddPrev()
87 …return ((list_status_t)kLIST_Ok == listStatus) ? (messaging_status_t)kMSG_Success : (messaging_sta… in MSG_QueueAddPrev()
93 list_status_t listStatus; in MSG_QueueRemove() local
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/components/osa/
Dfsl_os_abstraction_bm.c381 list_status_t listStatus; in OSA_TaskCreate() local
415 listStatus = LIST_AddPrevElement(&tcb->link, &ptaskStruct->link); in OSA_TaskCreate()
417 if (listStatus == (list_status_t)kLIST_DuplicateError) in OSA_TaskCreate()
433listStatus = LIST_AddTail(&s_osaState.taskList, (list_element_handle_t)(void *)&(ptaskStruct->link… in OSA_TaskCreate()
434 (void)listStatus; in OSA_TaskCreate()
435 assert(listStatus == kLIST_Ok); in OSA_TaskCreate()