Searched refs:colon (Results 1 - 25 of 104) sorted by relevance

12345

/freebsd-current/contrib/bmake/unit-tests/
H A Ddep-double-colon-indep.exp1 : 'Making 1400 dep-double-colon-1300 from dep-double-colon-1400 oodate dep-double-colon-1400'
2 : 'Making 1500 dep-double-colon-1300 from dep-double-colon-1500 oodate dep-double-colon-1500'
H A Ddepsrc-usebefore-double-colon.exp1 double-colon early 1
H A Ddep.exp1 make: "dep.mk" line 11: Inconsistent operator for only-colon
2 make: "dep.mk" line 13: Inconsistent operator for only-colon
H A Ddep-wildcards.exp1 dep-colon-bug-cross-file.mk
2 dep-colon.mk
3 dep-double-colon-indep.mk
4 dep-double-colon.mk
H A Ddirective.exp10 make: "directive.mk" line 40: Invalid line 'target-without-colon'
11 make: "directive.mk" line 43: Invalid line 'target-without-colon another-target'
H A Dvarmod.mk17 # * `no-colon`: after parsing this modifier, the following modifier
18 # does not need to be separated by a colon.
19 # Omitting this colon is bad style.
29 # | `!` | no-colon | | no |
32 # | `@` | no-colon | | no |
33 # | `C` | no-colon | | no |
37 # | `L` | no-colon | | N/A |
41 # | `P` | no-colon | | N/A |
44 # | `S` | no-colon | | N/A |
H A Ddirective.mk39 # expect+1: Invalid line 'target-without-colon'
40 target-without-colon
42 # expect+1: Invalid line 'target-without-colon another-target'
43 target-without-colon another-target
/freebsd-current/crypto/heimdal/appl/rcp/
H A Dextern.h45 char *colon (char *);
/freebsd-current/tools/regression/geom_gpt/
H A Dgctl_test_helper.c58 char *e, *colon, *equal; local
63 colon = strchr(arg, ':');
65 if (colon == NULL && equal == NULL)
67 if (colon == arg || equal == arg)
69 if (colon != NULL && equal != NULL && equal < colon)
72 if (colon != NULL)
73 *colon++ = '\0';
78 if (colon != NULL) {
80 if (*colon
[all...]
/freebsd-current/crypto/openssl/test/
H A Dbio_prefix_text.c142 char *colon; local
188 colon = strchr(arg, ':');
190 if (colon != NULL) {
198 colon++;
200 colon = arg;
202 indent = strtoul(colon, &endptr, 10);
226 colon = strchr(arg, ':');
228 if (colon != NULL) {
236 colon++;
238 colon
[all...]
/freebsd-current/usr.bin/indent/
H A Dindent_codes.h46 #define colon 9 macro
/freebsd-current/contrib/sendmail/libmilter/
H A Dlistener.c133 char *colon; local
147 colon = strchr(p, ':');
148 if (colon != NULL)
150 *colon = '\0';
206 *colon++ = ':';
210 colon = p;
241 at = colon;
242 len = strlen(colon) + 1;
247 name, colon);
250 (void) sm_strlcpy(addr.sunix.sun_path, colon,
[all...]
/freebsd-current/usr.bin/cmp/
H A Dcmp.c79 char *colon; local
81 colon = strchr(spec, ':');
82 if (colon != NULL)
83 *colon++ = '\0';
88 if (colon != NULL)
89 return (expand_number(colon, skip2) == 0);
/freebsd-current/contrib/sendmail/praliases/
H A Dpraliases.c243 char *colon; local
252 colon = strchr(filename, PATH_SEPARATOR);
253 if (colon == NULL)
260 *colon = '\0';
261 db_name = colon + 1;
293 if (colon != NULL)
294 *colon = ':';
398 if (colon != NULL)
399 *colon = ':';
/freebsd-current/contrib/tcpdump/
H A Dprint-esp.c426 char *colon, *p; local
428 colon = strchr(decode, ':');
429 if (colon == NULL) {
433 *colon = '\0';
462 colon++;
463 if (colon[0] == '0' && colon[1] == 'x') {
466 colon += 2;
467 sa->secretlen = espprint_decode_hex(ndo, sa->secret, sizeof(sa->secret), colon);
470 i = strlen(colon);
493 char *colon; local
[all...]
/freebsd-current/usr.bin/locate/locate/
H A Dlocate.c106 extern char **colon(char **, char*, char*);
140 dbv = colon(dbv, optarg, _PATH_FCODES);
174 dbv = colon(dbv, _PATH_FCODES, _PATH_FCODES);
176 dbv = colon(dbv, path_fcodes, _PATH_FCODES);
/freebsd-current/lib/libipsec/
H A Dpolicy_token.l69 colon \:
113 unique{colon}{decstring} {
/freebsd-current/usr.sbin/lpr/common_source/
H A Dmatchjobs.c211 char *atsign, *colon, *lhside, *numstr, *period, *rhside; local
228 colon = strchr(jobstr, ':');
231 if (colon != NULL)
232 *colon = '\0';
243 if (colon != NULL) {
244 rhside = colon + 1;
387 if (colon != NULL)
388 *colon = ':';
/freebsd-current/usr.sbin/rrenumd/
H A Dlexer.l73 colon \:
86 ipv6addr {hexdigit}{0,4}({colon}{hexdigit}{0,4}){2,7}
/freebsd-current/contrib/ntp/clockstuff/
H A Dpropdelay.c308 char *colon; local
335 colon = strchr(str, ':');
336 if (colon != NULL) {
342 while (cp < colon)
348 colon = strchr(cp, ':');
349 if (colon != NULL) {
351 while (cp < colon)
/freebsd-current/usr.bin/mail/
H A Dutil.c133 char *colon, *oldhfield = NULL; local
141 if ((lc = gethfield(ibuf, linebuf, lc, &colon)) < 0)
143 if ((hfield = ishfield(linebuf, colon, field)) != NULL)
152 * "colon" is set to point to the colon in the header.
156 gethfield(FILE *f, char linebuf[], int rem, char **colon) argument
176 *colon = cp;
211 ishfield(char *linebuf, char *colon, const char *field) argument
213 char *cp = colon;
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dfnmatch.c107 const char *colon; local
118 if ((colon = strchr(pattern, ':')) == NULL || colon[1] != ']') {
122 *ep = colon + 2;
123 len = (size_t)(colon - pattern);
/freebsd-current/usr.sbin/kldxref/
H A Dkldxref.c267 const char *colon, *semi; local
284 colon = strchr(walker, ':');
286 if (semi != NULL && semi < colon)
288 if (colon - walker > sizeof(type))
290 strncpy(type, walker, colon - walker);
291 type[colon - walker] = '\0';
293 if (semi - colon >= sizeof(key))
295 strncpy(key, colon + 1, semi - colon - 1);
296 key[semi - colon
[all...]
/freebsd-current/tools/tools/switch_tls/
H A Dswitch_tls.c136 char *dot, *colon; local
140 colon = strrchr(arg, ':');
142 return (colon);
143 if (colon == NULL)
145 if (dot < colon)
146 return (colon);
/freebsd-current/usr.sbin/tcpdrop/
H A Dtcpdrop.c144 char *dot, *colon; local
148 colon = strrchr(arg, ':');
150 return (colon);
151 if (colon == NULL)
153 if (dot < colon)
154 return (colon);

Completed in 279 milliseconds

12345