Symbol: colon
crypto/libressl/crypto/err/err.c
928
char *colon = strchr(s, ':');
crypto/libressl/crypto/err/err.c
929
if (colon == NULL ||
crypto/libressl/crypto/err/err.c
930
colon > &buf[len - 1] - NUM_COLONS + i) {
crypto/libressl/crypto/err/err.c
933
colon = &buf[len - 1] - NUM_COLONS + i;
crypto/libressl/crypto/err/err.c
934
*colon = ':';
crypto/libressl/crypto/err/err.c
936
s = colon + 1;
crypto/openssh/misc.c
833
if ((tmp = colon(sdup)) == NULL)
crypto/openssh/misc.h
77
char *colon(char *);
crypto/openssh/scp.c
696
if (colon(argv[argc - 1])) /* Dest is remote host. */
lib/libssh/openbsd-compat/glob.c
445
const Char *colon;
lib/libssh/openbsd-compat/glob.c
449
if ((colon = g_strchr(pattern, ':')) == NULL || colon[1] != ']')
lib/libssh/openbsd-compat/glob.c
452
len = (size_t)(colon - pattern);
sbin/devattr/devattr.c
126
colon = strchr(optarg, ':');
sbin/devattr/devattr.c
127
if (colon == NULL) {
sbin/devattr/devattr.c
134
*colon = '\0';
sbin/devattr/devattr.c
138
optarg + 1, colon + 1);
sbin/devattr/devattr.c
141
optarg + 1, colon + 1);
sbin/devattr/devattr.c
145
optarg, colon + 1);
sbin/devattr/devattr.c
148
optarg, colon + 1);
sbin/devattr/devattr.c
91
char *colon;
usr.bin/indent/indent.c
699
case colon: /* got a ':' */
usr.bin/indent/lexi.c
424
code = colon;
usr.bin/locate/locate/locate.c
124
extern char **colon(char **, char*, char*);
usr.bin/locate/locate/locate.c
151
dbv = colon(dbv, optarg, _PATH_FCODES);
usr.bin/locate/locate/locate.c
185
dbv = colon(dbv, _PATH_FCODES, _PATH_FCODES);
usr.bin/locate/locate/locate.c
187
dbv = colon(dbv, path_fcodes, _PATH_FCODES);
usr.bin/locate/locate/util.c
49
char **colon(char **, char*, char*);
usr.bin/mail/util.c
131
char *colon, *oldhfield = NULL;
usr.bin/mail/util.c
139
if ((lc = gethfield(ibuf, linebuf, lc, &colon)) < 0)
usr.bin/mail/util.c
141
if ((hfield = ishfield(linebuf, colon, field)) != NULL)
usr.bin/mail/util.c
154
gethfield(FILE *f, char *linebuf, int rem, char **colon)
usr.bin/mail/util.c
174
*colon = cp;
usr.bin/mail/util.c
209
ishfield(char *linebuf, char *colon, const char *field)
usr.bin/mail/util.c
211
char *cp = colon;
usr.bin/touch/touch.c
325
const char *fmt, *colon;
usr.bin/touch/touch.c
331
colon = strchr(arg, ':');
usr.bin/touch/touch.c
332
if (colon == NULL || strchr(colon + 1, ':') == NULL)
usr.sbin/lpr/common_source/matchjobs.c
210
char *atsign, *colon, *lhside, *numstr, *period, *rhside;
usr.sbin/lpr/common_source/matchjobs.c
227
colon = strchr(jobstr, ':');
usr.sbin/lpr/common_source/matchjobs.c
230
if (colon != NULL)
usr.sbin/lpr/common_source/matchjobs.c
231
*colon = '\0';
usr.sbin/lpr/common_source/matchjobs.c
242
if (colon != NULL) {
usr.sbin/lpr/common_source/matchjobs.c
243
rhside = colon + 1;
usr.sbin/lpr/common_source/matchjobs.c
386
if (colon != NULL)
usr.sbin/lpr/common_source/matchjobs.c
387
*colon = ':';
usr.sbin/ppp/nat_cmd.c
372
char *colon;
usr.sbin/ppp/nat_cmd.c
375
colon = strchr(str, ':');
usr.sbin/ppp/nat_cmd.c
376
if (!colon) {
usr.sbin/ppp/nat_cmd.c
381
*colon = '\0'; /* Cheat the const-ness ! */
usr.sbin/ppp/nat_cmd.c
383
*colon = ':'; /* Cheat the const-ness ! */
usr.sbin/ppp/nat_cmd.c
387
return StrToPortRange(colon + 1, low, high, proto);
usr.sbin/ppp/physical.c
897
char *colon;
usr.sbin/ppp/physical.c
907
colon = memchr(ut.ut_host, ':', sizeof ut.ut_host);
usr.sbin/ppp/physical.c
908
if (colon)
usr.sbin/ppp/physical.c
909
*colon = '\0';
usr.sbin/pppctl/pppctl.c
295
char *port, *host, *colon;
usr.sbin/pppctl/pppctl.c
298
colon = strchr(argv[arg], ':');
usr.sbin/pppctl/pppctl.c
299
if (colon) {
usr.sbin/pppctl/pppctl.c
300
port = colon + 1;
usr.sbin/pppctl/pppctl.c
301
*colon = '\0';
usr.sbin/pppctl/pppctl.c
324
if (colon)
usr.sbin/pppctl/pppctl.c
325
*colon = ':';
usr.sbin/tcpdrop/tcpdrop.c
120
char *dot, *colon;
usr.sbin/tcpdrop/tcpdrop.c
124
colon = strrchr(arg, ':');
usr.sbin/tcpdrop/tcpdrop.c
126
return (colon);
usr.sbin/tcpdrop/tcpdrop.c
127
if (colon == NULL)
usr.sbin/tcpdrop/tcpdrop.c
129
if (dot < colon)
usr.sbin/tcpdrop/tcpdrop.c
130
return (colon);