/freebsd/contrib/bmake/unit-tests/ |
H A D | dep-double-colon-indep.mk | 16 @rm -f dep-double-colon-1??? 18 _!= touch -t 202001011200 dep-double-colon-1200 19 _!= touch -t 202001011300 dep-double-colon-1300 20 _!= touch -t 202001011400 dep-double-colon-1400 21 _!= touch -t 202001011500 dep-double-colon-1500 23 all: dep-double-colon-1300 25 dep-double-colon-1300:: dep-double-colon-1200 28 dep-double-colon-1300:: dep-double-colon-1400 31 dep-double-colon-1300:: dep-double-colon-1500
|
H A D | depsrc-usebefore-double-colon.mk | 10 double-colon:: .USEBEFORE 11 @echo double-colon early 1 15 double-colon:: 16 @echo double-colon early 2 20 double-colon:: .USEBEFORE 21 @echo double-colon early 3 25 action: double-colon 29 double-colon:: 30 @echo double-colon late
|
H A D | dep.mk | 9 only-colon: 11 only-colon! 13 only-colon:: 16 only-colon:
|
H A D | var-op-sunsh.mk | 11 VAR:sh= echo colon-sh 18 VAR :sh = echo colon-sh-spaced 29 VAR:shell= echo colon-shell
|
H A D | directive.mk | 40 target-without-colon 43 target-without-colon another-target
|
/freebsd/tools/regression/geom_gpt/ |
H A D | gctl_test_helper.c | 58 char *e, *colon, *equal; in parse() local 63 colon = strchr(arg, ':'); in parse() 65 if (colon == NULL && equal == NULL) in parse() 67 if (colon == arg || equal == arg) in parse() 69 if (colon != NULL && equal != NULL && equal < colon) in parse() 72 if (colon != NULL) in parse() 73 *colon++ = '\0'; in parse() 78 if (colon != NULL) { in parse() 80 if (*colon == '\0') in parse() 82 *len = strtol(colon, &e, 0); in parse()
|
/freebsd/crypto/openssl/test/ |
H A D | bio_prefix_text.c | 142 char *colon; in setup() local 188 colon = strchr(arg, ':'); in setup() 190 if (colon != NULL) { in setup() 198 colon++; in setup() 200 colon = arg; in setup() 202 indent = strtoul(colon, &endptr, 10); in setup() 226 colon = strchr(arg, ':'); in setup() 228 if (colon != NULL) { in setup() 236 colon++; in setup() 238 colon = arg; in setup() [all …]
|
/freebsd/contrib/sendmail/libmilter/ |
H A D | listener.c | 133 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/contrib/tcpdump/ |
H A D | print-esp.c | 416 char *colon, *p; in espprint_decode_encalgo() local 419 colon = strchr(decode, ':'); in espprint_decode_encalgo() 420 if (colon == NULL) { in espprint_decode_encalgo() 424 *colon = '\0'; in espprint_decode_encalgo() 466 colon++; in espprint_decode_encalgo() 467 if (colon[0] == '0' && colon[1] == 'x') { in espprint_decode_encalgo() 470 colon += 2; in espprint_decode_encalgo() 471 sa->secretlen = espprint_decode_hex(ndo, sa->secret, sizeof(sa->secret), colon); in espprint_decode_encalgo() 474 i = strlen(colon); in espprint_decode_encalgo() 477 memcpy(sa->secret, colon, i); in espprint_decode_encalgo() [all …]
|
/freebsd/contrib/sendmail/praliases/ |
H A D | praliases.c | 243 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/usr.bin/cmp/ |
H A D | cmp.c | 79 char *colon; in parse_iskipspec() local 81 colon = strchr(spec, ':'); in parse_iskipspec() 82 if (colon != NULL) in parse_iskipspec() 83 *colon++ = '\0'; in parse_iskipspec() 88 if (colon != NULL) in parse_iskipspec() 89 return (expand_number(colon, skip2) == 0); in parse_iskipspec()
|
/freebsd/usr.sbin/lpr/common_source/ |
H A D | matchjobs.c | 211 char *atsign, *colon, *lhside, *numstr, *period, *rhside; in parse_jobspec() local 228 colon = strchr(jobstr, ':'); in parse_jobspec() 231 if (colon != NULL) in parse_jobspec() 232 *colon = '\0'; in parse_jobspec() 243 if (colon != NULL) { in parse_jobspec() 244 rhside = colon + 1; in parse_jobspec() 387 if (colon != NULL) in parse_jobspec() 388 *colon = ':'; in parse_jobspec()
|
/freebsd/usr.sbin/kldxref/ |
H A D | kldxref.c | 267 const char *colon, *semi; in parse_pnp_list() local 284 colon = strchr(walker, ':'); in parse_pnp_list() 286 if (semi != NULL && semi < colon) in parse_pnp_list() 288 if (colon - walker > sizeof(type)) in parse_pnp_list() 290 strncpy(type, walker, colon - walker); in parse_pnp_list() 291 type[colon - walker] = '\0'; in parse_pnp_list() 293 if (semi - colon >= sizeof(key)) in parse_pnp_list() 295 strncpy(key, colon + 1, semi - colon - 1); in parse_pnp_list() 296 key[semi - colon - 1] = '\0'; in parse_pnp_list() 302 if (strlen(colon + 1) >= sizeof(key)) in parse_pnp_list() [all …]
|
/freebsd/crypto/openssh/openbsd-compat/ |
H A D | fnmatch.c | 107 const char *colon; in classmatch() local 118 if ((colon = strchr(pattern, ':')) == NULL || colon[1] != ']') { in classmatch() 122 *ep = colon + 2; in classmatch() 123 len = (size_t)(colon - pattern); in classmatch()
|
/freebsd/contrib/ntp/clockstuff/ |
H A D | propdelay.c | 308 char *colon; in latlong() local 335 colon = strchr(str, ':'); in latlong() 336 if (colon != NULL) { in latlong() 342 while (cp < colon) in latlong() 348 colon = strchr(cp, ':'); in latlong() 349 if (colon != NULL) { in latlong() 351 while (cp < colon) in latlong()
|
/freebsd/usr.bin/mail/ |
H A D | util.c | 133 char *colon, *oldhfield = NULL; in hfield() local 141 if ((lc = gethfield(ibuf, linebuf, lc, &colon)) < 0) in hfield() 143 if ((hfield = ishfield(linebuf, colon, field)) != NULL) in hfield() 156 gethfield(FILE *f, char linebuf[], int rem, char **colon) in gethfield() argument 176 *colon = cp; in gethfield() 211 ishfield(char *linebuf, char *colon, const char *field) in ishfield() argument 213 char *cp = colon; in ishfield()
|
/freebsd/usr.bin/locate/locate/ |
H A D | locate.c | 106 extern char **colon(char **, char*, char*); 140 dbv = colon(dbv, optarg, _PATH_FCODES); in main() 174 dbv = colon(dbv, _PATH_FCODES, _PATH_FCODES); in main() 176 dbv = colon(dbv, path_fcodes, _PATH_FCODES); in main()
|
/freebsd/tools/tools/switch_tls/ |
H A D | switch_tls.c | 136 char *dot, *colon; in findport() local 140 colon = strrchr(arg, ':'); in findport() 142 return (colon); in findport() 143 if (colon == NULL) in findport() 145 if (dot < colon) in findport() 146 return (colon); in findport()
|
/freebsd/usr.sbin/tcpdrop/ |
H A D | tcpdrop.c | 144 char *dot, *colon; in findport() local 148 colon = strrchr(arg, ':'); in findport() 150 return (colon); in findport() 151 if (colon == NULL) in findport() 153 if (dot < colon) in findport() 154 return (colon); in findport()
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseOpenMP.cpp | 269 P.SkipUntil(tok::colon, tok::r_paren, tok::annot_pragma_openmp_end, in parseOpenMPReductionId() 305 bool IsCorrect = !ExpectAndConsume(tok::colon); in ParseOpenMPDeclareReductionDirective() 312 if (Tok.is(tok::colon) || Tok.is(tok::annot_pragma_openmp_end)) { in ParseOpenMPDeclareReductionDirective() 334 SkipUntil(tok::comma, tok::colon, tok::annot_pragma_openmp_end, in ParseOpenMPDeclareReductionDirective() 338 if (Tok.is(tok::colon) || Tok.is(tok::annot_pragma_openmp_end)) in ParseOpenMPDeclareReductionDirective() 360 if (ExpectAndConsume(tok::colon)) in ParseOpenMPDeclareReductionDirective() 554 if (PP.LookAhead(0).is(tok::colon)) { in ParseOpenMPDeclareMapperDirective() 563 ExpectAndConsume(tok::colon); in ParseOpenMPDeclareMapperDirective() 1118 if (P.getCurToken().is(tok::colon)) in parseContextScore() 2695 if (Tok.is(tok::colon)) in ParseOpenMPDeclarativeOrExecutableDirective() [all …]
|
/freebsd/usr.bin/touch/ |
H A D | touch.c | 314 const char *fmt, *colon; in stime_darg() local 320 colon = strchr(arg, ':'); in stime_darg() 321 if (colon == NULL || strchr(colon + 1, ':') == NULL) in stime_darg()
|
/freebsd/usr.sbin/ppp/ |
H A D | nat_cmd.c | 373 char *colon; in StrToAddrAndPort() local 376 colon = strchr(str, ':'); in StrToAddrAndPort() 377 if (!colon) { in StrToAddrAndPort() 382 *colon = '\0'; /* Cheat the const-ness ! */ in StrToAddrAndPort() 384 *colon = ':'; /* Cheat the const-ness ! */ in StrToAddrAndPort() 388 return StrToPortRange(colon + 1, low, high, proto); in StrToAddrAndPort()
|
/freebsd/contrib/sendmail/src/ |
H A D | milter.c | 658 char *colon; local 682 colon = strchr(p, ':'); 683 if (colon != NULL) 685 *colon = '\0'; 745 *colon++ = ':'; 751 colon = p; 759 at = colon; 760 if (strlen(colon) >= sizeof(addr.sunix.sun_path)) 764 m->mf_name, colon); 768 m->mf_name, colon); [all …]
|
/freebsd/usr.sbin/bhyve/ |
H A D | bhyverun.c | 604 char *colon; in bhyve_parse_gdb_options() local 611 colon = strrchr(opt, ':'); in bhyve_parse_gdb_options() 612 if (colon == NULL) { in bhyve_parse_gdb_options() 615 *colon = '\0'; in bhyve_parse_gdb_options() 616 colon++; in bhyve_parse_gdb_options() 617 sport = colon; in bhyve_parse_gdb_options()
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 1064 if (parseToken(lltok::colon, "expected ':' at start of summary entry") || in skipModuleSummaryEntry() 2530 if (!EatIfPresent(lltok::colon)) { in parseMemoryAttr() 8739 if (parseToken(lltok::colon, "expected ':' here") || in parseModuleEntry() 8742 parseToken(lltok::colon, "expected ':' here") || in parseModuleEntry() 8746 parseToken(lltok::colon, "expected ':' here") || in parseModuleEntry() 8775 if (parseToken(lltok::colon, "expected ':' here") || in parseTypeIdEntry() 8778 parseToken(lltok::colon, "expected ':' here") || in parseTypeIdEntry() 8806 parseToken(lltok::colon, "expected ':' here") || in parseTypeIdSummary() 8835 if (parseToken(lltok::colon, "expected ':' here") || in parseTypeIdCompatibleVtableEntry() 8838 parseToken(lltok::colon, "expected ':' here") || in parseTypeIdCompatibleVtableEntry() [all …]
|