Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/binutils/binutils/
Ddlltool.c1365 char *exclude_string; in add_excludes() local
1369 exclude_string = strtok (local_copy, ",:"); in add_excludes()
1370 for (; exclude_string; exclude_string = strtok (NULL, ",:")) in add_excludes()
1376 new_exclude->string = (char *) xmalloc (strlen (exclude_string) + 2); in add_excludes()
1378 if (*exclude_string == '@') in add_excludes()
1379 sprintf (new_exclude->string, "%s", exclude_string); in add_excludes()
1381 sprintf (new_exclude->string, "_%s", exclude_string); in add_excludes()
1386 inform (_("Excluding symbol: %s"), exclude_string); in add_excludes()
/freebsd-10-stable/contrib/binutils/ld/
Dpe-dll.c430 char *exclude_string; in pe_dll_add_excludes() local
434 exclude_string = strtok (local_copy, ",:"); in pe_dll_add_excludes()
435 for (; exclude_string; exclude_string = strtok (NULL, ",:")) in pe_dll_add_excludes()
440 new_exclude->string = xmalloc (strlen (exclude_string) + 1); in pe_dll_add_excludes()
441 strcpy (new_exclude->string, exclude_string); in pe_dll_add_excludes()