/src/usr.bin/expand/ |
Makefile | 4 PROG= expand 5 MLINKS= expand.1 unexpand.1
|
/src/usr.bin/make/unit-tests/ |
dir-expand-path.mk | 1 # $NetBSD: dir-expand-path.mk,v 1.1 2020/08/22 21:55:54 rillig Exp $ 5 _!= rm -rf dir-expand-path.dir.* 6 _!= mkdir dir-expand-path.dir.1 7 _!= mkdir dir-expand-path.dir.2 8 _!= touch dir-expand-path.dir.1/file1.src 9 _!= touch dir-expand-path.dir.1/file2.src 10 _!= touch dir-expand-path.dir.2/file3.src 12 .PATH: dir-expand-path.dir.1 13 .PATH: dir-expand-path.dir.2 19 @rm -rf dir-expand-path.dir. [all...] |
dir-expand-path.exp | 1 dir-expand-path.dir.1/file1.src 2 dir-expand-path.dir.1/file2.src 3 dir-expand-path.dir.2/file3.src
|
var-op-expand.exp | 1 make: var-op-expand.mk:274: Unknown modifier ":s,value,replaced," 4 make: var-op-expand.mk:282: Unknown modifier ":s,value,replaced," 7 make: var-op-expand.mk:295: Bad condition 9 make: var-op-expand.mk:295: Unknown modifier ":Z1" 12 make: var-op-expand.mk:295: Unknown modifier ":Z2" 15 make: var-op-expand.mk:295: Unknown modifier ":Z1" 17 make: var-op-expand.mk:295: Unknown modifier ":Z2"
|
suff-transform-expand.mk | 1 # $NetBSD: suff-transform-expand.mk,v 1.1 2020/10/20 20:36:53 rillig Exp $ 10 # ${.TARGET} were available, so they expand to an empty string.
|
varname-make_print_var_on_error.mk | 15 # does not expand the node-local variables like .TARGET. This results in the
|
cmd-errors-lint.mk | 10 # Undefined variables in expressions are not an error. They expand to empty
|
cmd-errors.mk | 8 # Undefined variables in expressions are not an error. They expand to empty
|
depsrc-use.mk | 18 @echo first 1 # Using ${.TARGET} here would expand to "action"
|
varname-dollar.mk | 7 # and $$ would always expand to the same value.
|
varname-make_print_var_on_error-jobs.mk | 17 # does not expand the node-local variables like .TARGET. This results in the
|
varmod-defined.exp | 17 ModifyWord_Loop: expand "${8_DOLLARS}" to "$$$$"
|
var-eval-short.mk | 51 # Before var.c 1.877 from 2021-03-14, the modifier ':[...]' did not expand 65 # Before var.c 1.856 from 2021-03-14, the modifier ':C' did not expand the 84 # error message 'Invalid time value: ${FAIL}}' since it did not expand its 99 # error message 'Invalid time value: ${FAIL}}' since it did not expand its
|
cond-eof.mk | 12 # evaluated, even if it was not necessary to expand the expression.
|
/src/usr.bin/rdist/ |
Makefile | 8 SRCS= docmd.c expand.c gram.y lookup.c main.c server.c
|
gram.y | 147 nl = expand($3, E_VARS); 160 $1->sc_args = expand($2, E_VARS); 165 $1->sc_args = expand($2, E_ALL); 170 $1->sc_args = expand($2, E_VARS); 175 $1->sc_args = expand($2, E_ALL); 376 files = expand(files, E_VARS|E_SHELL); 377 hosts = expand(hosts, E_ALL); 430 c->c_files = expand(files, E_ALL);
|
/src/games/warp/ |
filexp | 2 : expand filename
|
/src/lib/csu/arch/sparc/ |
crt0.S | 51 sub %sp, 24, %sp ! expand to standard stack frame size
|
/src/usr.sbin/tcpdmatch/ |
tcpdmatch.c | 57 static void expand(char *, char *, struct request_info *); 280 static void expand(char *text, char *pattern, struct request_info *request) function in typeref:typename:void 297 expand("client: hostname", "%n", request); 298 expand("client: address ", "%a", request); 299 expand("client: username", "%u", request); 300 expand("server: hostname", "%N", request); 301 expand("server: address ", "%A", request); 302 expand("server: process ", "%d", request);
|
/src/usr.bin/lastcomm/ |
lastcomm.c | 64 static time_t expand(u_int); 137 t = expand(ab.ac_utime) + expand(ab.ac_stime); 146 delta = expand(ab.ac_etime) / (double)AHZ; 165 expand(u_int t) function in typeref:typename:time_t
|
/src/usr.bin/make/ |
str.c | 114 * If expand is true, quotes are removed and escape sequences such as \r, \t, 121 Substring_Words(const char *str, bool expand) 165 if (!expand) { 175 if (!expand) { 207 if (expand && inquote != '\0') { 222 if (!expand) { 276 Str_Words(const char *str, bool expand) 282 swords = Substring_Words(str, expand);
|
/src/usr.bin/gettext/ |
gettext.c | 61 expand(char *str) function in typeref:typename:bool 218 nflag |= expand(*argv);
|
/src/libexec/ld.elf_so/ |
expand.c | 1 /* $NetBSD: expand.c,v 1.8 2025/05/02 23:04:56 riastradh Exp $ */ 33 __RCSID("$NetBSD: expand.c,v 1.8 2025/05/02 23:04:56 riastradh Exp $"); 74 expand(char *buf, const char *execname, size_t what, size_t bl) function in typeref:typename:size_t 140 size_t ls = expand(dp, execname, i, ds);
|
/src/usr.bin/menuc/ |
scan.l | 101 expand { return EXPAND; }
|
/src/usr.bin/mail/ |
fio.c | 431 expand(const char *name) function in typeref:typename:PUBLIC const char * 440 * The order of evaluation is "%" and "#" expand into constants. 441 * "&" can expand into "+". "+" can expand into shell meta characters. 442 * Shell meta characters expand into constants. 531 if ((cp = value(ENAME_DEAD)) == NULL || (cp = expand(cp)) == NULL) 532 cp = expand("~/dead.letter"); 536 cp = expand(buf);
|