Home | History | Annotate | Download | only in libdw

Lines Matching refs:filelist

42 struct filelist
45 struct filelist *next;
156 struct filelist *filelist = NULL;
442 struct filelist null_file =
452 filelist = &null_file;
460 struct filelist flstack[MAX_STACK_FILES];
462 struct filelist *fl = (nfilelist < MAX_STACK_FILES \
464 : malloc (sizeof (struct filelist))); \
468 fl->next = filelist; \
469 filelist = fl; \
479 struct filelist *new_file = NEW_FILE ();
622 struct filelist *new_file = n == 0 ? &null_file : NEW_FILE ();
797 struct filelist *new_file = NEW_FILE ();
998 struct filelist *fileslist = filelist;
1078 struct filelist *fl = filelist->next;
1079 free (filelist);
1080 filelist = fl;