Lines Matching refs:filelist
42 struct filelist
45 struct filelist *next;
160 struct filelist *filelist = NULL;
448 struct filelist null_file =
458 filelist = &null_file;
466 struct filelist flstack[MAX_STACK_FILES];
468 struct filelist *fl = (nfilelist < MAX_STACK_FILES \
470 : malloc (sizeof (struct filelist))); \
474 fl->next = filelist; \
475 filelist = fl; \
485 struct filelist *new_file = NEW_FILE ();
628 struct filelist *new_file = n == 0 ? &null_file : NEW_FILE ();
812 struct filelist *new_file = NEW_FILE ();
1030 struct filelist *fileslist = filelist;
1110 struct filelist *fl = filelist->next;
1111 free (filelist);
1112 filelist = fl;