Symbol: concat
bin/sh/arithmetic.c
473
char *concat;
bin/sh/arithmetic.c
483
STARTSTACKSTR(concat);
bin/sh/arithmetic.c
487
STPUTC(*p++, concat);
bin/sh/arithmetic.c
490
STPUTC(' ', concat);
bin/sh/arithmetic.c
492
STPUTC('\0', concat);
bin/sh/arithmetic.c
493
p = grabstackstr(concat);
bin/sh/eval.c
186
char *concat;
bin/sh/eval.c
192
STARTSTACKSTR(concat);
bin/sh/eval.c
196
STPUTC(*p++, concat);
bin/sh/eval.c
199
STPUTC(' ', concat);
bin/sh/eval.c
201
STPUTC('\0', concat);
bin/sh/eval.c
202
p = grabstackstr(concat);
sbin/ldconfig/ldconfig.c
241
char *cp = concat(dir_list, *dir_list?":":"", dir);
sbin/ldconfig/ldconfig.c
275
path = concat(dir, "/", dp->d_name);
sbin/ldconfig/ldconfig.c
322
shp->path = concat(dir, "/", file);
sbin/ldconfig/ldconfig.c
339
shp->path = concat(dir, "/", file);
sbin/ldconfig/ldconfig.c
461
tempfile = concat(_PATH_LD_HINTS, ".XXXXXX", "");
sbin/ldconfig/shlib.h
45
char *concat(const char *, const char *, const char *);
tests/lib/libc/regex/t_exhaust.c
120
s2 = concat(s1, ")");
tests/lib/libc/regex/t_exhaust.c
122
d = concat("(", s2);
tests/lib/libc/regex/t_exhaust.c
133
s3 = concat(s1, s2);
tests/lib/libc/regex/t_exhaust.c
136
s1 = concat(s3, ")");
tests/lib/libc/regex/t_exhaust.c
138
d = concat("(", s1);
tests/lib/libc/regex/t_exhaust.c
149
s3 = concat(s1, s2);
tests/lib/libc/regex/t_exhaust.c
152
d = concat("(.?)", s3);
tests/lib/libc/regex/t_exhaust.c
186
s2 = concat(s1, "(.*)");
tests/lib/libc/regex/t_exhaust.c
189
d = concat(s2, s1);
tests/usr.bin/indent/lex_string.c
35
char concat[] = "line 1\n"
tests/usr.bin/indent/lex_string.c
40
char concat[] = "line 1\n"
tests/usr.sbin/inetd/t_inetd.c
55
static char *concat(const char *restrict, const char *restrict);
tests/usr.sbin/inetd/t_inetd.c
81
concat(atf_tc_get_config_var(tc, "srcdir"), "/test_server"),
tests/usr.sbin/inetd/t_inetd.c
88
concat(atf_tc_get_config_var(tc, "srcdir"),
usr.bin/config/sem.c
2036
return (concat(name, '*'));
usr.bin/config/sem.c
2043
return (concat(name, '?'));
usr.bin/config/sem.c
86
static const char *concat(const char *, int);
usr.bin/patch/backupfile.c
49
static char *concat(const char *, const char *);
usr.bin/patch/backupfile.c
68
return concat(file, simple_backup_suffix);
usr.bin/patch/backupfile.c
72
base_versions = concat(basename(tmp_file), ".~");
usr.bin/patch/backupfile.c
91
return concat(file, simple_backup_suffix);
usr.bin/sort/sort.h
180
void concat(FILE *, FILE *);
usr.sbin/autofs/automount.c
293
options = concat(options, ',', optarg);
usr.sbin/autofs/automountd.c
245
options = concat(options, ',', adr->adr_options);
usr.sbin/autofs/automountd.c
250
options = concat(cmdline_options, ',', options);
usr.sbin/autofs/automountd.c
279
tmp = concat(adr->adr_path, '/', key);
usr.sbin/autofs/automountd.c
308
options = concat(options, ',', "automounted");
usr.sbin/autofs/automountd.c
489
options = concat(options, ',', optarg);
usr.sbin/autofs/common.c
140
tmp = concat(partial, '/', component);
usr.sbin/autofs/common.c
554
path = concat(n->n_key, '/', x);
usr.sbin/autofs/common.c
590
options = concat(x, ',', n->n_options);
usr.sbin/autofs/common.c
617
options = concat(cmdline_options, ',', tmp);
usr.sbin/autofs/common.h
80
char *concat(const char *, char, const char *);
usr.sbin/autofs/popen.c
112
command = concat(command, ' ', arg);
usr.sbin/makemandb/apropos-utils.c
576
concat(&section_clause, " AND mandb.section IN (");
usr.sbin/makemandb/apropos-utils.c
582
concat(&section_clause, temp);
usr.sbin/makemandb/apropos-utils.h
105
void concat(char **, const char *);
usr.sbin/makemandb/apropos.c
207
concat(&str, *argv++);
usr.sbin/makemandb/makemandb.c
1196
concat(&rec->name_desc, tmp);
usr.sbin/makemandb/makemandb.c
943
concat(&rec->name, escaped_name);