Home
last modified time | relevance | path

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

/external/webrtc/src/system_wrappers/source/
Dlist_no_stl.cc149 int ListWrapper::Insert(ListItem* existing_previous_item, ListItem* new_item) in Insert() argument
158 if (!existing_previous_item && !Empty()) in Insert()
163 if (!existing_previous_item) in Insert()
168 ListItem* next_item = existing_previous_item->next_; in Insert()
169 new_item->next_ = existing_previous_item->next_; in Insert()
170 new_item->prev_ = existing_previous_item; in Insert()
171 existing_previous_item->next_ = new_item; in Insert()
Dlist_stl.cc180 int ListWrapper::Insert(ListItem* existing_previous_item, in Insert() argument
186 if (!existing_previous_item && !Empty()) in Insert()
199 insert_location = existing_previous_item->this_iter_; in Insert()
Dlist_stl.h57 int Insert(ListItem* existing_previous_item, ListItem* new_item);
Dlist_no_stl.h61 int Insert(ListNoStlItem* existing_previous_item,
Dlist_unittest.cc66 int Insert(ListItem* existing_previous_item, in Insert() argument
68 const int retval = list_.Insert(existing_previous_item, new_item); in Insert()
/external/webrtc/src/system_wrappers/interface/
Dlist_wrapper.h86 int Insert(ListItem* existing_previous_item,