Searched refs:listStatus (Results 1 – 3 of 3) sorted by relevance
34 list_status_t listStatus = kLIST_Ok; in LIST_Error_Check() local40 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() local129 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() local175 listStatus = LIST_Error_Check(list, element); in LIST_AddHead()[all …]
47 list_status_t listStatus; in MSG_QueueAddTail() local54 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() local68 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() local85 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 …]
381 list_status_t listStatus; in OSA_TaskCreate() local415 listStatus = LIST_AddPrevElement(&tcb->link, &ptaskStruct->link); in OSA_TaskCreate()417 if (listStatus == (list_status_t)kLIST_DuplicateError) in OSA_TaskCreate()433 …listStatus = 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()