Home | History | Annotate | Download | only in libdw

Lines Matching defs:filelist

26 struct filelist
29 struct filelist *next;
213 struct filelist null_file =
223 struct filelist *filelist = &null_file;
230 struct filelist *new_file =
231 (struct filelist *) alloca (sizeof (*new_file));
280 new_file->next = filelist;
281 filelist = new_file;
404 struct filelist *new_file =
405 (struct filelist *) alloca (sizeof (*new_file));
428 new_file->next = filelist;
429 filelist = new_file;
573 files->info[nfilelist] = filelist->info;
574 filelist = filelist->next;
576 assert (filelist == NULL);