Home | History | Annotate | Download | only in libdw

Lines Matching defs:filelist

43 struct filelist
46 struct filelist *next;
160 struct filelist null_file =
170 struct filelist *filelist = &null_file;
325 struct filelist flstack[MAX_STACK_FILES];
327 struct filelist *fl = (nfilelist < MAX_STACK_FILES \
329 : malloc (sizeof (struct filelist))); \
333 fl->next = filelist; \
334 filelist = fl; \
344 struct filelist *new_file = NEW_FILE ();
545 struct filelist *new_file = NEW_FILE ();
745 struct filelist *fileslist = filelist;
825 struct filelist *fl = filelist->next;
826 free (filelist);
827 filelist = fl;