Searched defs:new_list (Results 1 - 9 of 9) sorted by relevance
/external/e2fsprogs/lib/ext2fs/ |
H A D | finddev.c | 127 struct dir_list *list = 0, *new_list = 0; local 144 scan_dir(current->name, device, &new_list, &ret_path); 154 list = new_list; 155 new_list = 0; 159 free_dirlist(&new_list);
|
/external/e2fsprogs/lib/blkid/ |
H A D | devno.c | 148 struct dir_list *list = NULL, *new_list = NULL; local 164 scan_dir(current->name, devno, &new_list, &devname); 174 list = new_list; 175 new_list = NULL; 179 free_dirlist(&new_list);
|
/external/bluetooth/glib/gio/xdgmime/ |
H A D | xdgmimemagic.c | 730 XdgMimeMagicMatchlet *new_list; local 736 new_list = NULL; 744 matchlet->next = new_list; 745 new_list = matchlet; 748 return new_list;
|
/external/bluetooth/glib/glib/ |
H A D | glist.c | 119 GList *new_list; local 122 new_list = _g_list_alloc (); 123 new_list->data = data; 124 new_list->next = NULL; 130 last->next = new_list; 131 new_list->prev = last; 137 new_list->prev = NULL; 138 return new_list; 167 GList *new_list; local 169 new_list 203 GList *new_list; local 475 GList *new_list = NULL; local 801 GList *new_list; local [all...] |
H A D | gslist.c | 114 GSList *new_list; local 117 new_list = _g_slist_alloc (); 118 new_list->data = data; 119 new_list->next = NULL; 125 last->next = new_list; 130 return new_list; 158 GSList *new_list; local 160 new_list = _g_slist_alloc (); 161 new_list->data = data; 162 new_list 187 GSList *new_list; local 468 GSList *new_list = NULL; local 756 GSList *new_list; local [all...] |
/external/chromium/base/third_party/xdg_mime/ |
H A D | xdgmimemagic.c | 730 XdgMimeMagicMatchlet *new_list; local 736 new_list = NULL; 744 matchlet->next = new_list; 745 new_list = matchlet; 748 return new_list;
|
/external/libpng/ |
H A D | pngset.c | 1073 png_bytep new_list, p; local 1093 new_list=(png_bytep)png_malloc(png_ptr, 1098 png_memcpy(new_list, png_ptr->chunk_list, 1103 png_memcpy(new_list + 5*old_num_chunks, chunk_list, 1105 for (p = new_list + 5*old_num_chunks + 4, i = 0; i<num_chunks; i++, p += 5) 1108 png_ptr->chunk_list = new_list;
|
/external/qemu/distrib/libpng-1.2.19/ |
H A D | pngset.c | 1109 png_bytep new_list, p; local 1129 new_list=(png_bytep)png_malloc(png_ptr, 1133 png_memcpy(new_list, png_ptr->chunk_list, 1138 png_memcpy(new_list+5*old_num_chunks, chunk_list, 1140 for (p=new_list+5*old_num_chunks+4, i=0; i<num_chunks; i++, p+=5) 1143 png_ptr->chunk_list=new_list;
|
/external/blktrace/btt/ |
H A D | output.c | 331 struct seek_mode_info *p, *this, *new_list = NULL; local 337 if (new_list == NULL || this->nseeks > new_list->nseeks) 338 new_list = this; 339 else if (this->nseeks == new_list->nseeks) { 340 for (p = new_list; p != NULL; p = p->next) 347 this->next = new_list; 348 new_list = this; 354 sip->median / sip->nseeks, new_list->mode, new_list [all...] |
Completed in 199 milliseconds