Searched refs:element_list (Results 1 – 1 of 1) sorted by relevance
340 list_element_handle_t element_list = element->list->head; in LIST_RemoveElement() local341 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() local415 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 …]