HomeSort by relevance Sort by last modified time
    Searched refs:old_list (Results 1 - 4 of 4) sorted by null

  /external/libunwind/src/
Los-common.c 48 move_cached_elf_data (struct map_info *old_list, struct map_info *new_list)
50 while (old_list)
52 if (!old_list->ei.valid)
54 old_list = old_list->next;
61 while (new_list && old_list->start <= new_list->start)
63 if (old_list->start == new_list->start
64 && old_list->end == new_list->end)
68 new_list->ei = old_list->ei;
70 old_list->ei.mapped = false
    [all...]
  /external/v8/src/zone/
zone-handle-set.h 61 List const* const old_list = list(); local
62 for (int i = 0; i < old_list->length(); ++i) {
63 if (old_list->at(i) == value) return;
64 if (old_list->at(i) > value) break;
66 List* new_list = new (zone) List(old_list->length() + 1, zone);
68 for (; i < old_list->length(); ++i) {
69 if (old_list->at(i) > value) break;
70 new_list->Add(old_list->at(i), zone);
73 for (; i < old_list->length(); ++i) {
74 new_list->Add(old_list->at(i), zone)
    [all...]
  /external/curl/lib/
pipeline.c 196 struct curl_llist *old_list = *list_ptr; local
247 if(old_list) {
248 Curl_llist_destroy(old_list, NULL);
289 struct curl_llist *old_list = *list_ptr; local
318 if(old_list) {
319 Curl_llist_destroy(old_list, NULL);
  /bionic/libc/bionic/
system_properties.cpp 784 auto old_list = *list;
785 *list = old_list->next;
786 delete old_list;
    [all...]

Completed in 95 milliseconds