HomeSort by: relevance | last modified time | path
    Searched refs:colon (Results 1 - 25 of 37) sorted by relevancy

1 2

  /src/usr.bin/make/unit-tests/
dep-double-colon-indep.exp 1 : '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'
depsrc-usebefore-double-colon.exp 1 double-colon early 1
dep-colon-bug-cross-file.exp 1 make: dep-colon-bug-cross-file.mk:32: warning: duplicate script for target "all" ignored
2 make: dep-colon-bug-cross-file.mk:42: warning: using previous script for "all" defined here
dep.exp 1 make: dep.mk:11: Inconsistent operator for only-colon
2 make: dep.mk:13: Inconsistent operator for only-colon
dep-wildcards.exp 1 dep-colon-bug-cross-file.mk
2 dep-colon.mk
3 dep-double-colon-indep.mk
4 dep-double-colon.mk
directive.mk 39 # 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
varmod.mk 17 # * `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.
30 # All no-colon modifiers get a "no", as the modifier name would be
36 # | ! | no-colon | | no |
42 # | @ | no-colon | | no |
43 # | C | no-colon | | no |
47 # | L | no-colon | | no |
51 # | P | no-colon | | no |
54 # | S | no-colon | | no
    [all...]
var-op-sunsh.mk 11 VAR:sh= echo colon-sh
12 .if ${VAR} != "colon-sh"
18 VAR :sh = echo colon-sh-spaced
19 .if ${VAR} != "colon-sh-spaced"
29 VAR:shell= echo colon-shell
33 .if ${${:UVAR\:shell}} != "echo colon-shell"
dep-colon-bug-cross-file.mk 1 # $NetBSD: dep-colon-bug-cross-file.mk,v 1.5 2023/06/01 20:56:35 rillig Exp $
varmod-to-separator.mk 24 # The first colon is the separator, the second ends the modifier.
29 # When there is just a colon but no other character, the words are
56 # since it is followed by a colon. Or it could be the colon since that
57 # colon is followed by the closing brace. It's the latter case.
varmod-subst.exp 27 1 two 3 colon
  /src/bin/rcp/
extern.h 42 char *colon(char *);
util.c 58 colon(char *cp) function
60 if (*cp == ':') /* Leading colon is part of file name. */
  /src/usr.bin/audio/common/
decode.c 79 char *s, *colon, *dot; local
90 if ((colon = strchr(s, ':')) != NULL) {
91 *colon++ = '\0';
94 s = colon;
96 if ((colon = strchr(s, ':')) != NULL) {
97 *colon++ = '\0';
101 s = colon;
  /src/tests/fs/hfs/
Makefile 10 FILES= colon.hfs.bz2.uue
  /src/usr.bin/mkdep/
mkdep.c 217 char *buf, *lim, *ptr, *line, *suf, *colon, *eol; local
376 for (colon = line; *colon != ':'; colon++) {
377 if (colon >= eol) {
378 colon = NULL;
382 if (isspace((unsigned char)*line) || colon == NULL) {
392 for (suf = colon; suf > buf; suf--) {
438 if (write(dependfile, colon, eol - colon) < 0
    [all...]
  /src/usr.sbin/ypserv/mknetid/
mknetid.c 218 int colon; local
236 for (k = p, colon = 0; *k != '\0'; k++)
238 colon++;
240 if (colon != 6) {
293 int colon; local
311 for (k = p, colon = 0; *k != '\0'; k++)
313 colon++;
315 if (colon != 3) {
  /src/usr.sbin/wgconfig/
wgconfig.c 526 char *bracket, *colon; local
534 colon = bracket + 1;
535 if (*colon != ':')
537 *colon = '\0';
538 port = colon + 1;
540 char *colon, *tmp; local
541 colon = strchr(addr_port, ':');
542 if (colon == NULL)
544 tmp = strchr(colon + 1, ':');
547 /* Assume the last colon is a separator *
    [all...]
  /src/tests/usr.bin/indent/
lsym_lparen_or_lbracket.c 258 a ? 3 : (colon);
304 a ? 3 : (colon);
  /src/usr.bin/mail/
support.c 180 ishfield(const char linebuf[], char *colon, const char field[])
182 char *cp = colon;
198 * "colon" is set to point to the colon in the header.
205 gethfield(FILE *f, char linebuf[], int rem, char **colon)
226 *colon = cp;
265 char *colon, *oldhfield = NULL; local
279 if ((lc = gethfield(ibuf, linebuf, lc, &colon)) < 0)
282 if ((headerfield = ishfield(linebuf, colon, field)) != NULL) {
290 if ((headerfield = ishfield(linebuf, colon, field)) != NULL
    [all...]
mime_decode.c 1075 * For a proper header, "*colon" is set to point to the colon
1081 * 3) only sets *colon if there is a "proper" one.
1084 get_folded_hfield(FILE *f, char *linebuf, size_t bufsize, char **colon)
1100 *colon = *cp2 == ':' ? linebuf + (cp2 - cp) : NULL;
1125 char *colon; local
1129 while (get_folded_hfield(fi, linebuf, sizeof(linebuf), &colon) >= 0) {
1133 if (colon)
  /src/sbin/newfs_udf/
newfs_udf.c 145 char scrap[255], *colon; local
211 if ((colon = strstr(optarg, ":"))) {
214 *colon = 0;
216 optarg = colon+1;
  /src/usr.bin/rdist/
defs.h 62 #define COLON 6
153 char *colon(char *);
  /src/usr.sbin/altq/libaltq/
quip_server.c 434 const char *colon; local
446 if ((colon = strchr(arg, ':')) == NULL)
448 else if (strchr(colon+1, ':') == NULL)
  /src/usr.sbin/puffs/mount_psshfs/
psshfs.c 70 static char * colon(char *);
90 colon(char *cp) function
295 if ((path = colon(host)) != NULL) {

Completed in 48 milliseconds

1 2