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

  /external/libmtp/src/
playlist-spl.h 33 LIBMTP_playlist_t * const newlist);
playlist-spl.c 263 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->name) != 0)
    [all...]
libmtp.c 2684 LIBMTP_devicestorage_t *oldhead, *ptr1, *ptr2, *newlist; local
    [all...]
  /external/elfutils/0.153/libdw/
dwarf_entry_breakpoints.c 69 Dwarf_Addr *newlist = realloc (*bkpts, ++nbkpts * sizeof newlist[0]); local
70 if (newlist == NULL)
77 newlist[nbkpts - 1] = pc;
78 *bkpts = newlist;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_code.c 64 struct rc_constant * newlist; local
70 newlist = malloc(sizeof(struct rc_constant) * c->_Reserved);
71 memcpy(newlist, c->Constants, sizeof(struct rc_constant) * c->Count);
74 c->Constants = newlist;
  /external/markdown/markdown/extensions/
toc.py 68 newlist = etree.Element("ul")
70 last_li.append(newlist)
72 list_stack[-1].append(newlist)
73 list_stack.append(newlist)
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_code.c 64 struct rc_constant * newlist; local
70 newlist = malloc(sizeof(struct rc_constant) * c->_Reserved);
71 memcpy(newlist, c->Constants, sizeof(struct rc_constant) * c->Count);
74 c->Constants = newlist;
  /external/e2fsprogs/e2fsck/
profile_helpers.c 90 char **newlist; local
95 newlist = realloc(list->list, newmax * sizeof(char *));
96 if (newlist == 0)
99 list->list = newlist;
  /external/dnsmasq/src/
option.c 1388 struct server *serv, *newlist = NULL; local
    [all...]
  /external/javassist/src/main/javassist/bytecode/
AnnotationsAttribute.java 209 Annotation[] newlist = new Annotation[annotations.length + 1]; local
210 System.arraycopy(annotations, 0, newlist, 0, annotations.length);
211 newlist[annotations.length] = annotation;
212 setAnnotations(newlist);
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3tokenstream.c 773 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/dhcpcd/
if-options.c 134 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/chromium_org/third_party/cython/src/Cython/Compiler/
Visitor.py 244 newlist = []
248 newlist += x
250 newlist.append(x)
251 setattr(parent, attr, newlist)
  /external/chromium_org/third_party/libxslt/libxslt/
pattern.c 545 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;
    [all...]

Completed in 652 milliseconds