Home
last modified time | relevance | path

Searched refs:new_exclude (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/gpl2/grep/dist/lib/
H A Dexclude.h33 struct exclude *new_exclude PARAMS ((void));
H A Dexclude.c49 new_exclude (void) in new_exclude() function
/netbsd-src/external/gpl2/diffutils/dist/lib/
H A Dexclude.h46 struct exclude *new_exclude PARAMS ((void));
H A Dexclude.c99 new_exclude (void) in new_exclude() function
/netbsd-src/external/gpl2/grep/dist/src/
H A Dgrep.c1621 excluded_patterns = new_exclude (); in main()
1627 excluded_patterns = new_exclude (); in main()
1637 included_patterns = new_exclude (); in main()
/netbsd-src/external/gpl3/binutils.old/dist/binutils/
H A Ddlltool.c1482 struct string_list *new_exclude; in add_excludes() local
1484 new_exclude = ((struct string_list *) in add_excludes()
1486 new_exclude->string = (char *) xmalloc (strlen (exclude_string) + 2); in add_excludes()
1489 sprintf (new_exclude->string, "%s", exclude_string); in add_excludes()
1491 sprintf (new_exclude->string, "%s%s", (!leading_underscore ? "" : "_"), in add_excludes()
1493 new_exclude->next = excludes; in add_excludes()
1494 excludes = new_exclude; in add_excludes()
/netbsd-src/external/gpl3/binutils/dist/binutils/
H A Ddlltool.c1535 struct string_list *new_exclude; in add_excludes() local
1537 new_exclude = ((struct string_list *) in add_excludes()
1539 new_exclude->string = (char *) xmalloc (strlen (exclude_string) + 2); in add_excludes()
1542 sprintf (new_exclude->string, "%s", exclude_string); in add_excludes()
1544 sprintf (new_exclude->string, "%s%s", (!leading_underscore ? "" : "_"), in add_excludes()
1546 new_exclude->next = excludes; in add_excludes()
1547 excludes = new_exclude; in add_excludes()
/netbsd-src/external/gpl3/binutils.old/dist/ld/
H A Dpe-dll.c533 struct exclude_list_struct *new_exclude; in pe_dll_add_excludes() local
535 new_exclude = xmalloc (sizeof (struct exclude_list_struct)); in pe_dll_add_excludes()
536 new_exclude->string = xmalloc (strlen (exclude_string) + 1); in pe_dll_add_excludes()
537 strcpy (new_exclude->string, exclude_string); in pe_dll_add_excludes()
538 new_exclude->type = type; in pe_dll_add_excludes()
539 new_exclude->next = excludes; in pe_dll_add_excludes()
540 excludes = new_exclude; in pe_dll_add_excludes()
/netbsd-src/external/gpl3/binutils/dist/ld/
H A Dpe-dll.c544 struct exclude_list_struct *new_exclude; in pe_dll_add_excludes() local
546 new_exclude = xmalloc (sizeof (struct exclude_list_struct)); in pe_dll_add_excludes()
547 new_exclude->string = xmalloc (strlen (exclude_string) + 1); in pe_dll_add_excludes()
548 strcpy (new_exclude->string, exclude_string); in pe_dll_add_excludes()
549 new_exclude->type = type; in pe_dll_add_excludes()
550 new_exclude->next = excludes; in pe_dll_add_excludes()
551 excludes = new_exclude; in pe_dll_add_excludes()
/netbsd-src/external/gpl2/diffutils/dist/src/
H A Ddiff.c277 excluded = new_exclude (); in main()