HomeSort by relevance Sort by last modified time
    Searched refs:new_list (Results 1 - 17 of 17) 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 143 struct dir_list *list = NULL, *new_list = NULL; local
159 blkid__scan_dir(current->name, devno, &new_list, &devname);
169 list = new_list;
170 new_list = NULL;
174 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/chromium/build/
install-build-deps.sh 266 if new_list="$(yes n | LANG=C $new_list_cmd)"; then
272 new_list=$(echo "$new_list" |
274 new_list=$(echo "$new_list" | sed 's/ *$//')
275 if [ -z "$new_list" ] ; then
278 echo "Installing missing packages: $new_list."
279 sudo apt-get install ${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/chromium/chrome/browser/history/
history_types.cc 281 StackVector<size_t, 4> new_list; local
282 new_list->push_back(index);
283 url_to_results_[url] = new_list;
top_sites.h 147 const MostVisitedURLList& new_list,
top_sites.cc 454 const MostVisitedURLList& new_list,
467 for (size_t i = 0; i < new_list.size(); i++) {
468 std::map<GURL, size_t>::iterator found = all_old_urls.find(new_list[i].url);
471 added.url = new_list[i];
477 moved.url = new_list[i];
    [all...]
top_sites_unittest.cc 451 std::vector<MostVisitedURL> new_list; local
452 AppendMostVisitedURL(&new_list, stays_the_same); // 0 (unchanged)
453 AppendMostVisitedURL(&new_list, gets_added_1); // 1 (added)
454 AppendMostVisitedURL(&new_list, gets_added_2); // 2 (added)
455 AppendMostVisitedURL(&new_list, gets_moved_1); // 3 (moved from 2)
458 history::TopSites::DiffMostVisited(old_list, new_list, &delta);
    [all...]
  /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/
eglApi.cpp 241 EGLint* new_list = (EGLint*)malloc(size*sizeof(EGLint)); local
242 if (new_list == 0)
244 memcpy(new_list, attrib_list, size*sizeof(EGLint));
249 EGLint& configId(new_list[patch_index+1]);
262 attrib_list = const_cast<const EGLint *>(new_list);
    [all...]
  /external/e2fsprogs/misc/
mke2fs.c 906 char **new_list; local
910 new_list = realloc(sl->list, (sl->max+1) * sizeof(char *));
911 if (!new_list)
913 sl->list = new_list;
    [all...]
  /external/chromium/chrome/common/extensions/
extension.h 261 // the URL patterns in |new_list| contain additional distinct hosts compared
264 const URLPatternList& old_list, const URLPatternList& new_list);
    [all...]
extension.cc 525 const URLPatternList& old_list, const URLPatternList& new_list) {
530 std::vector<std::string> new_hosts = GetDistinctHosts(new_list, false);
    [all...]

Completed in 5266 milliseconds