Home | History | Annotate | Download | only in ld

Lines Matching refs:imports

240     IMPORTS = 268,                 /* IMPORTS  */
277 #define IMPORTS 268
342 YYSYMBOL_IMPORTS = 13, /* IMPORTS */
809 "SECTIONS", "EXPORTS", "IMPORTS", "VERSIONK", "BASE", "CONSTANTU",
1758 case 67: /* keyword_as_name: IMPORTS */
1760 { (yyval.id_const) = "IMPORTS"; }
2318 if (fdef->imports[i].internal_name != fdef->imports[i].name)
2319 free (fdef->imports[i].internal_name);
2320 free (fdef->imports[i].name);
2321 free (fdef->imports[i].its_name);
2323 free (fdef->imports);
2419 fprintf (file, " imports:\n");
2424 fdef->imports[i].internal_name,
2425 fdef->imports[i].module,
2426 fdef->imports[i].name,
2427 fdef->imports[i].ordinal);
2702 pos = find_import_in_list (fdef->imports, fdef->num_imports,
2707 return fdef->imports + pos;
2712 fdef->imports = xrealloc (fdef->imports,
2713 fdef->max_imports * sizeof (*fdef->imports));
2715 i = fdef->imports + pos;
2743 pos = find_import_in_list (fdef->imports, fdef->num_imports,
2748 if (fdef->imports && pos != (unsigned) fdef->num_imports)
2750 i = fdef->imports + pos;
2760 fdef->imports = xrealloc (fdef->imports,
2761 fdef->max_imports * sizeof (*fdef->imports));
2763 i = fdef->imports + pos;
2781 def_file_import *i = fdef->imports + pos;
3258 { "IMPORTS", IMPORTS },