Home
last modified time | relevance | path

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

/hal_nxp-3.5.0/mcux/mcux-sdk/components/messaging/
Dfsl_component_messaging.c47 list_status_t listStatus; 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()
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()
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()
100 …return ((list_status_t)kLIST_Ok == listStatus) ? (messaging_status_t)kMSG_Success : (messaging_sta… in MSG_QueueRemove()
/hal_nxp-3.5.0/mcux/mcux-sdk/components/lists/
Dfsl_component_generic_list.c32 static list_status_t LIST_Error_Check(list_handle_t list, list_element_handle_t newElement) in LIST_Error_Check()
34 list_status_t listStatus = kLIST_Ok; in LIST_Error_Check()
124 list_status_t LIST_AddTail(list_handle_t list, list_element_handle_t element) in LIST_AddTail()
127 list_status_t listStatus = kLIST_Ok; in LIST_AddTail()
170 list_status_t LIST_AddHead(list_handle_t list, list_element_handle_t element) in LIST_AddHead()
173 list_status_t listStatus = kLIST_Ok; in LIST_AddHead()
328 list_status_t LIST_RemoveElement(list_element_handle_t element) in LIST_RemoveElement()
330 list_status_t listStatus = kLIST_Ok; in LIST_RemoveElement()
399 list_status_t LIST_AddPrevElement(list_element_handle_t element, list_element_handle_t newElement) in LIST_AddPrevElement()
401 list_status_t listStatus = kLIST_Ok; in LIST_AddPrevElement()
Dfsl_component_generic_list.h54 } list_status_t; typedef
64 } list_status_t; typedef
127 list_status_t LIST_AddHead(list_handle_t list, list_element_handle_t element);
136 list_status_t LIST_AddTail(list_handle_t list, list_element_handle_t element);
182 list_status_t LIST_RemoveElement(list_element_handle_t element);
193 list_status_t LIST_AddPrevElement(list_element_handle_t element, list_element_handle_t newElement);
/hal_nxp-3.5.0/mcux/mcux-sdk/components/osa/
Dfsl_os_abstraction_bm.c381 list_status_t listStatus; in OSA_TaskCreate()
417 if (listStatus == (list_status_t)kLIST_DuplicateError) in OSA_TaskCreate()