Symbol: colon
crypto/heimdal/appl/rcp/extern.h
45
char *colon (char *);
crypto/heimdal/appl/rcp/rcp.c
140
if ((targ = colon(argv[argc - 1]))) /* Dest is remote host. */
crypto/heimdal/appl/rcp/rcp.c
175
src = colon(argv[i]);
crypto/heimdal/appl/rcp/rcp.c
236
if (!(src = colon(argv[i]))) { /* Local to local. */
crypto/heimdal/lib/kadm5/init_c.c
112
colon = strchr ((*ctx)->admin_server, ':');
crypto/heimdal/lib/kadm5/init_c.c
113
if (colon != NULL)
crypto/heimdal/lib/kadm5/init_c.c
114
*colon++ = '\0';
crypto/heimdal/lib/kadm5/init_c.c
120
else if (colon != NULL) {
crypto/heimdal/lib/kadm5/init_c.c
123
(*ctx)->kadmind_port = htons(strtol (colon, &end, 0));
crypto/heimdal/lib/kadm5/init_c.c
72
char *colon;
crypto/heimdal/lib/krb5/cache.c
225
const char * colon;
crypto/heimdal/lib/krb5/cache.c
227
if ((colon = strchr(name, ':')) == NULL)
crypto/heimdal/lib/krb5/cache.c
233
if (colon == name + 1 &&
crypto/heimdal/lib/krb5/cache.c
234
strchr(colon + 1, ':') == NULL)
crypto/heimdal/lib/krb5/send_to_kdc.c
265
char *colon;
crypto/heimdal/lib/krb5/send_to_kdc.c
277
colon = strchr(proxy, ':');
crypto/heimdal/lib/krb5/send_to_kdc.c
278
if(colon != NULL)
crypto/heimdal/lib/krb5/send_to_kdc.c
279
*colon++ = '\0';
crypto/heimdal/lib/krb5/send_to_kdc.c
284
ntohs(init_port (colon, htons(80))));
crypto/openssh/misc.c
854
if ((tmp = colon(sdup)) == NULL)
crypto/openssh/misc.h
78
char *colon(char *);
crypto/openssh/openbsd-compat/fnmatch.c
107
const char *colon;
crypto/openssh/openbsd-compat/fnmatch.c
118
if ((colon = strchr(pattern, ':')) == NULL || colon[1] != ']') {
crypto/openssh/openbsd-compat/fnmatch.c
122
*ep = colon + 2;
crypto/openssh/openbsd-compat/fnmatch.c
123
len = (size_t)(colon - pattern);
crypto/openssh/openbsd-compat/glob.c
445
const Char *colon;
crypto/openssh/openbsd-compat/glob.c
449
if ((colon = g_strchr(pattern, ':')) == NULL || colon[1] != ']')
crypto/openssh/openbsd-compat/glob.c
452
len = (size_t)(colon - pattern);
crypto/openssh/scp.c
697
if (colon(argv[argc - 1])) /* Dest is remote host. */
crypto/openssl/crypto/x509/v3_cpols.c
259
const char *colon = strchr(tagstr, ':');
crypto/openssl/crypto/x509/v3_cpols.c
261
return (colon == NULL) ? -1 : colon - tagstr;
crypto/openssl/test/bio_prefix_text.c
144
char *colon;
crypto/openssl/test/bio_prefix_text.c
189
colon = strchr(arg, ':');
crypto/openssl/test/bio_prefix_text.c
191
if (colon != NULL) {
crypto/openssl/test/bio_prefix_text.c
199
colon++;
crypto/openssl/test/bio_prefix_text.c
201
colon = arg;
crypto/openssl/test/bio_prefix_text.c
203
indent = strtoul(colon, &endptr, 10);
crypto/openssl/test/bio_prefix_text.c
227
colon = strchr(arg, ':');
crypto/openssl/test/bio_prefix_text.c
229
if (colon != NULL) {
crypto/openssl/test/bio_prefix_text.c
237
colon++;
crypto/openssl/test/bio_prefix_text.c
239
colon = arg;
crypto/openssl/test/bio_prefix_text.c
246
if (BIO_set_prefix(chain[idx], colon) <= 0) {
stand/ficl/words.c
4897
dictAppendWord(dp, ":", colon, FW_DEFAULT);
stand/kboot/kboot/hostdisk.c
429
const char *colon;
stand/kboot/kboot/hostdisk.c
432
colon = strchr(devspec, ':');
stand/kboot/kboot/hostdisk.c
433
if (colon == NULL)
stand/kboot/kboot/hostdisk.c
436
cp[colon - devspec] = '\0';
tools/regression/geom_gpt/gctl_test_helper.c
58
char *e, *colon, *equal;
tools/regression/geom_gpt/gctl_test_helper.c
63
colon = strchr(arg, ':');
tools/regression/geom_gpt/gctl_test_helper.c
65
if (colon == NULL && equal == NULL)
tools/regression/geom_gpt/gctl_test_helper.c
67
if (colon == arg || equal == arg)
tools/regression/geom_gpt/gctl_test_helper.c
69
if (colon != NULL && equal != NULL && equal < colon)
tools/regression/geom_gpt/gctl_test_helper.c
72
if (colon != NULL)
tools/regression/geom_gpt/gctl_test_helper.c
73
*colon++ = '\0';
tools/regression/geom_gpt/gctl_test_helper.c
78
if (colon != NULL) {
tools/regression/geom_gpt/gctl_test_helper.c
80
if (*colon == '\0')
tools/regression/geom_gpt/gctl_test_helper.c
82
*len = strtol(colon, &e, 0);
tools/tools/switch_tls/switch_tls.c
136
char *dot, *colon;
tools/tools/switch_tls/switch_tls.c
140
colon = strrchr(arg, ':');
tools/tools/switch_tls/switch_tls.c
142
return (colon);
tools/tools/switch_tls/switch_tls.c
143
if (colon == NULL)
tools/tools/switch_tls/switch_tls.c
145
if (dot < colon)
tools/tools/switch_tls/switch_tls.c
146
return (colon);
usr.bin/cmp/cmp.c
79
char *colon;
usr.bin/cmp/cmp.c
81
colon = strchr(spec, ':');
usr.bin/cmp/cmp.c
82
if (colon != NULL)
usr.bin/cmp/cmp.c
83
*colon++ = '\0';
usr.bin/cmp/cmp.c
88
if (colon != NULL)
usr.bin/cmp/cmp.c
89
return (expand_number(colon, skip2) == 0);
usr.bin/indent/indent.c
712
case colon: /* got a ':' */
usr.bin/indent/lexi.c
424
code = colon;
usr.bin/locate/locate/locate.c
106
extern char **colon(char **, char*, char*);
usr.bin/locate/locate/locate.c
140
dbv = colon(dbv, optarg, _PATH_FCODES);
usr.bin/locate/locate/locate.c
174
dbv = colon(dbv, _PATH_FCODES, _PATH_FCODES);
usr.bin/locate/locate/locate.c
176
dbv = colon(dbv, path_fcodes, _PATH_FCODES);
usr.bin/locate/locate/util.c
47
char **colon(char **, char*, char*);
usr.bin/mail/util.c
133
char *colon, *oldhfield = NULL;
usr.bin/mail/util.c
141
if ((lc = gethfield(ibuf, linebuf, lc, &colon)) < 0)
usr.bin/mail/util.c
143
if ((hfield = ishfield(linebuf, colon, field)) != NULL)
usr.bin/mail/util.c
156
gethfield(FILE *f, char linebuf[], int rem, char **colon)
usr.bin/mail/util.c
176
*colon = cp;
usr.bin/mail/util.c
211
ishfield(char *linebuf, char *colon, const char *field)
usr.bin/mail/util.c
213
char *cp = colon;
usr.bin/touch/touch.c
309
const char *fmt, *colon;
usr.bin/touch/touch.c
315
colon = strchr(arg, ':');
usr.bin/touch/touch.c
316
if (colon == NULL || strchr(colon + 1, ':') == NULL)
usr.sbin/bhyve/bhyverun.c
776
char *colon;
usr.sbin/bhyve/bhyverun.c
783
colon = strrchr(opt, ':');
usr.sbin/bhyve/bhyverun.c
784
if (colon == NULL) {
usr.sbin/bhyve/bhyverun.c
787
*colon = '\0';
usr.sbin/bhyve/bhyverun.c
788
colon++;
usr.sbin/bhyve/bhyverun.c
789
sport = colon;
usr.sbin/cxgbetool/cxgbetool.c
717
const char *colon, *afn;
usr.sbin/cxgbetool/cxgbetool.c
732
colon = strchr(args[1], ':');
usr.sbin/cxgbetool/cxgbetool.c
733
if (!colon) {
usr.sbin/kldxref/kldxref.c
267
const char *colon, *semi;
usr.sbin/kldxref/kldxref.c
284
colon = strchr(walker, ':');
usr.sbin/kldxref/kldxref.c
286
if (semi != NULL && semi < colon)
usr.sbin/kldxref/kldxref.c
288
if (colon - walker > sizeof(type))
usr.sbin/kldxref/kldxref.c
290
strncpy(type, walker, colon - walker);
usr.sbin/kldxref/kldxref.c
291
type[colon - walker] = '\0';
usr.sbin/kldxref/kldxref.c
293
if (semi - colon >= sizeof(key))
usr.sbin/kldxref/kldxref.c
295
strncpy(key, colon + 1, semi - colon - 1);
usr.sbin/kldxref/kldxref.c
296
key[semi - colon - 1] = '\0';
usr.sbin/kldxref/kldxref.c
302
if (strlen(colon + 1) >= sizeof(key))
usr.sbin/kldxref/kldxref.c
304
strcpy(key, colon + 1);
usr.sbin/lpr/common_source/matchjobs.c
211
char *atsign, *colon, *lhside, *numstr, *period, *rhside;
usr.sbin/lpr/common_source/matchjobs.c
228
colon = strchr(jobstr, ':');
usr.sbin/lpr/common_source/matchjobs.c
231
if (colon != NULL)
usr.sbin/lpr/common_source/matchjobs.c
232
*colon = '\0';
usr.sbin/lpr/common_source/matchjobs.c
243
if (colon != NULL) {
usr.sbin/lpr/common_source/matchjobs.c
244
rhside = colon + 1;
usr.sbin/lpr/common_source/matchjobs.c
387
if (colon != NULL)
usr.sbin/lpr/common_source/matchjobs.c
388
*colon = ':';
usr.sbin/ppp/nat_cmd.c
373
char *colon;
usr.sbin/ppp/nat_cmd.c
376
colon = strchr(str, ':');
usr.sbin/ppp/nat_cmd.c
377
if (!colon) {
usr.sbin/ppp/nat_cmd.c
382
*colon = '\0'; /* Cheat the const-ness ! */
usr.sbin/ppp/nat_cmd.c
384
*colon = ':'; /* Cheat the const-ness ! */
usr.sbin/ppp/nat_cmd.c
388
return StrToPortRange(colon + 1, low, high, proto);
usr.sbin/ppp/physical.c
901
char *colon;
usr.sbin/ppp/physical.c
911
colon = memchr(ut.ut_host, ':', sizeof ut.ut_host);
usr.sbin/ppp/physical.c
912
if (colon)
usr.sbin/ppp/physical.c
913
*colon = '\0';
usr.sbin/tcpdrop/tcpdrop.c
144
char *dot, *colon;
usr.sbin/tcpdrop/tcpdrop.c
148
colon = strrchr(arg, ':');
usr.sbin/tcpdrop/tcpdrop.c
150
return (colon);
usr.sbin/tcpdrop/tcpdrop.c
151
if (colon == NULL)
usr.sbin/tcpdrop/tcpdrop.c
153
if (dot < colon)
usr.sbin/tcpdrop/tcpdrop.c
154
return (colon);