Lines Matching refs:filename_list
50 static struct filename_list *new_filename_listelem (const char *string);
51 static void add_inputfiles (struct filename_list *fnames);
53 static struct filename_list *mark_as_needed (struct filename_list *listp);
73 struct filename_list *filename_list; member
122 %type <filename_list> filename_id_list
123 %type <filename_list> filename_id_listelem
563 static struct filename_list *
566 struct filename_list *newp; in new_filename_listelem()
569 newp = (struct filename_list *) xcalloc (1, sizeof (*newp)); in new_filename_listelem()
576 static struct filename_list *
577 mark_as_needed (struct filename_list *listp) in mark_as_needed()
579 struct filename_list *runp = listp; in mark_as_needed()
592 add_inputfiles (struct filename_list *fnames) in add_inputfiles()
600 struct filename_list *first = ld_state.srcfiles->next; in add_inputfiles()