Searched defs:newlist (Results 1 - 8 of 8) sorted by relevance

/external/elfutils/libdw/
H A Ddwarf_entry_breakpoints.c69 Dwarf_Addr *newlist = realloc (*bkpts, ++nbkpts * sizeof newlist[0]); local
70 if (newlist == NULL)
77 newlist[nbkpts - 1] = pc;
78 *bkpts = newlist;
/external/e2fsprogs/e2fsck/
H A Dprofile_helpers.c90 char **newlist; local
95 newlist = realloc(list->list, newmax * sizeof(char *));
96 if (newlist == 0)
99 list->list = newlist;
/external/dhcpcd/
H A Dif-options.c134 char **newlist; local
165 newlist = xrealloc(lst, sizeof(char *) * (i + 2));
166 newlist[i] = xstrdup(value);
167 newlist[i + 1] = NULL;
168 ifo->environ = newlist;
170 return newlist[i];
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3tokenstream.c773 pANTLR3_LIST newlist; local
777 newlist = tokenStream->getTokensSet(tokenStream, start, stop, bitSet);
781 return newlist;
789 pANTLR3_LIST newlist; local
792 newlist = tokenStream->getTokensSet(tokenStream, start, stop, bitSet);
796 return newlist;
/external/libmtp/src/
H A Dplaylist-spl.c263 LIBMTP_playlist_t * const newlist)
265 IF_DEBUG() printf("pl->name='%s'\n",newlist->name);
268 LIBMTP_playlist_t * old = LIBMTP_Get_Playlist(device, newlist->playlist_id);
277 if(old->no_tracks != newlist->no_tracks)
279 for(i=0;i<newlist->no_tracks && delta==0;i++) {
280 if(old->tracks[i] != newlist->tracks[i])
293 if(strcmp(old->name,newlist->name) == 0)
296 printf("name is changing too -> %s\n",newlist->name);
299 return LIBMTP_Create_New_Playlist(device, newlist);
304 if(strcmp(old->name,newlist
262 update_spl_playlist(LIBMTP_mtpdevice_t *device, LIBMTP_playlist_t * const newlist) argument
[all...]
H A Dlibmtp.c2684 LIBMTP_devicestorage_t *oldhead, *ptr1, *ptr2, *newlist; local
2693 newlist = NULL;
2727 if(newlist == NULL) {
2728 newlist = ptr2;
2729 newlist->prev = NULL;
2731 ptr2->prev = newlist;
2732 newlist->next = ptr2;
2733 newlist = newlist->next;
2737 if (newlist !
[all...]
/external/libxslt/libxslt/
H A Dpattern.c545 xmlXPathObjectPtr newlist; local
560 newlist = xmlXPathEval(comp->pattern, ctxt->xpathCtxt);
565 if (newlist == NULL)
567 if (newlist->type != XPATH_NODESET) {
568 xmlXPathFreeObject(newlist);
579 list = newlist;
590 list = newlist;
/external/dnsmasq/src/
H A Doption.c1388 struct server *serv, *newlist = NULL; local
1406 serv->next = newlist;
1407 newlist = serv;
1412 if (!newlist)
1421 newlist = opt_malloc(sizeof(struct server));
1422 memset(newlist, 0, sizeof(struct server));
1427 newlist->flags |= SERV_LITERAL_ADDRESS;
1428 if (!(newlist->flags & SERV_TYPE))
1434 newlist->flags |= SERV_NO_ADDR; /* no server */
1435 if (newlist
[all...]

Completed in 2789 milliseconds