Lines Matching refs:filename_list
58 static struct filename_list *new_filename_listelem (const char *string);
59 static void add_inputfiles (struct filename_list *fnames);
61 static struct filename_list *mark_as_needed (struct filename_list *listp);
81 struct filename_list *filename_list; member
130 %type <filename_list> filename_id_list
131 %type <filename_list> filename_id_listelem
571 static struct filename_list *
574 struct filename_list *newp; in new_filename_listelem()
577 newp = (struct filename_list *) xcalloc (1, sizeof (*newp)); in new_filename_listelem()
584 static struct filename_list *
585 mark_as_needed (struct filename_list *listp) in mark_as_needed()
587 struct filename_list *runp = listp; in mark_as_needed()
600 add_inputfiles (struct filename_list *fnames) in add_inputfiles()
608 struct filename_list *first = ld_state.srcfiles->next; in add_inputfiles()