Home
last modified time | relevance | path

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

/hal_nxp-3.5.0/mcux/mcux-sdk/components/lists/
Dfsl_component_generic_list.c340 list_element_handle_t element_list = element->list->head; in LIST_RemoveElement() local
341 while (NULL != element_list) in LIST_RemoveElement()
345 element->list->head = element_list->next; in LIST_RemoveElement()
348 if (element_list->next == element) in LIST_RemoveElement()
350 element_list->next = element->next; in LIST_RemoveElement()
353 element_list = element_list->next; in LIST_RemoveElement()
414 list_element_handle_t element_list = element->list->head; in LIST_AddPrevElement() local
415 while (NULL != element_list) in LIST_AddPrevElement()
417 if ((element_list->next == element) || (element_list == element)) in LIST_AddPrevElement()
419 if (element_list == element) in LIST_AddPrevElement()
[all …]