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

  /external/bluetooth/glib/glib/
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 = _g_list_alloc ()
203 GList *new_list; local
475 GList *new_list = NULL; local
801 GList *new_list; local
    [all...]
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->next = list
187 GSList *new_list; local
468 GSList *new_list = NULL; local
756 GSList *new_list; local
    [all...]
  /external/e2fsprogs/lib/blkid/
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/e2fsprogs/lib/ext2fs/
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/blktrace/btt/
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->nseeks)
    [all...]
  /external/bluetooth/glib/gio/xdgmime/
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/
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,
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngset.c 1109 png_bytep new_list, p; local
    [all...]
  /frameworks/base/opengl/libs/EGL/
egl.cpp 853 EGLint* new_list = (EGLint*)malloc(size*sizeof(EGLint)); local
854 if (new_list == 0)
856 memcpy(new_list, attrib_list, size*sizeof(EGLint));
860 EGLint& configId(new_list[patch_index+1]);
870 attrib_list = const_cast<const EGLint *>(new_list);
    [all...]

Completed in 369 milliseconds