Home
last modified time | relevance | path

Searched refs:exclude_string (Results 1 – 2 of 2) sorted by relevance

/toolchain/binutils/binutils-2.27/binutils/
Ddlltool.c1529 char *exclude_string; in add_excludes() local
1533 exclude_string = strtok (local_copy, ",:"); in add_excludes()
1534 for (; exclude_string; exclude_string = strtok (NULL, ",:")) in add_excludes()
1540 new_exclude->string = (char *) xmalloc (strlen (exclude_string) + 2); in add_excludes()
1542 if (*exclude_string == '@') in add_excludes()
1543 sprintf (new_exclude->string, "%s", exclude_string); in add_excludes()
1546 exclude_string); in add_excludes()
1551 inform (_("Excluding symbol: %s"), exclude_string); in add_excludes()
/toolchain/binutils/binutils-2.27/ld/
Dpe-dll.c500 char *exclude_string; in pe_dll_add_excludes() local
504 exclude_string = strtok (local_copy, ",:"); in pe_dll_add_excludes()
505 for (; exclude_string; exclude_string = strtok (NULL, ",:")) in pe_dll_add_excludes()
510 new_exclude->string = xmalloc (strlen (exclude_string) + 1); in pe_dll_add_excludes()
511 strcpy (new_exclude->string, exclude_string); in pe_dll_add_excludes()