Searched refs:new_exclude (Results 1 - 4 of 4) sorted by relevance

/haiku-buildtools/legacy/binutils/ld/
H A Dpe-dll.c373 struct exclude_list_struct *new_exclude; local
375 new_exclude = xmalloc (sizeof (struct exclude_list_struct));
376 new_exclude->string = xmalloc (strlen (exclude_string) + 1);
377 strcpy (new_exclude->string, exclude_string);
378 new_exclude->type = type;
379 new_exclude->next = excludes;
380 excludes = new_exclude;
/haiku-buildtools/legacy/binutils/binutils/
H A Ddlltool.c1341 struct string_list *new_exclude; local
1343 new_exclude = ((struct string_list *)
1345 new_exclude->string = (char *) xmalloc (strlen (exclude_string) + 2);
1348 sprintf (new_exclude->string, "%s", exclude_string);
1350 sprintf (new_exclude->string, "_%s", exclude_string);
1351 new_exclude->next = excludes;
1352 excludes = new_exclude;
/haiku-buildtools/binutils/ld/
H A Dpe-dll.c507 struct exclude_list_struct *new_exclude; local
509 new_exclude = xmalloc (sizeof (struct exclude_list_struct));
510 new_exclude->string = xmalloc (strlen (exclude_string) + 1);
511 strcpy (new_exclude->string, exclude_string);
512 new_exclude->type = type;
513 new_exclude->next = excludes;
514 excludes = new_exclude;
/haiku-buildtools/binutils/binutils/
H A Ddlltool.c1535 struct string_list *new_exclude; local
1537 new_exclude = ((struct string_list *)
1539 new_exclude->string = (char *) xmalloc (strlen (exclude_string) + 2);
1542 sprintf (new_exclude->string, "%s", exclude_string);
1544 sprintf (new_exclude->string, "%s%s", (!leading_underscore ? "" : "_"),
1546 new_exclude->next = excludes;
1547 excludes = new_exclude;

Completed in 81 milliseconds