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

1 2

  /src/usr.bin/make/unit-tests/
var-scope-cmdline.exp 1 make: var-scope-cmdline.mk:72: global
2 make: var-scope-cmdline.mk:82: makeflags
cmdline-undefined.exp 2 make: cmdline-undefined.mk:41: From the command line: Undefined is .
3 make: cmdline-undefined.mk:42: From .MAKEFLAGS '=': Undefined is .
4 make: cmdline-undefined.mk:43: From .MAKEFLAGS ':=': Undefined is .
5 make: cmdline-undefined.mk:47: From the command line: Undefined is now defined.
6 make: cmdline-undefined.mk:48: From .MAKEFLAGS '=': Undefined is now defined.
7 make: cmdline-undefined.mk:49: From .MAKEFLAGS ':=': Undefined is now defined.
10 make: cmdline-undefined.mk:41: From the command line: Undefined is .
11 make: cmdline-undefined.mk:42: From .MAKEFLAGS '=': Undefined is .
12 make: cmdline-undefined.mk:43: From .MAKEFLAGS ':=': Undefined is .
13 make: cmdline-undefined.mk:47: From the command line: Undefined is now defined
    [all...]
cmdline.exp 2 show-objdir: <tmpdir>/cmdline/6a8899d2-d227-4b55-9b6b-f3c8eeb83fd5
4 show-objdir: <tmpdir>/cmdline/a7b41170-53f8-4cc2-bc5c-e4c3dd93ec45/
cond-func-make.exp 2 : via-cmdline
var-scope-cmdline.mk 1 # $NetBSD: var-scope-cmdline.mk,v 1.4 2023/11/19 21:47:52 rillig Exp $
14 # variables from the cmdline scope override global variables, since after the
16 # be needed in the cmdline scope to ensure that there is no overriding
23 # there is a cmdline variable of the same name.
25 # Whenever a cmdline variable is created, any global variable of the
30 # Deleting a cmdline variable is not possible.
33 # there cannot be a cmdline variable of the same name. Therefore, after
35 # the cmdline scope.
37 # The above ruleset provides the same guarantees as the simple rule "cmdline
40 # that when a cmdline variable with '$$' in its name was added, a globa
    [all...]
cond-func-make.mk 7 .if !make(via-cmdline)
16 .if !make(via-cmdline)
33 via-cmdline via-dot-makeflags:
varmod-loop.mk 136 # the argument of an '.if' directive is evaluated in cmdline scope. Putting
137 # these together makes it possible to undefine variables from the cmdline
139 .MAKEFLAGS: CMDLINE=cmdline
140 .if ${:U${CMDLINE}${:U:@CMDLINE@@}} != "cmdline"
143 # Now the cmdline variable got undefined.
144 .if ${CMDLINE} != "cmdline"
    [all...]
varname-empty.exp 1 Command: ignoring ' = cmdline-u' as the variable name '${:U}' expands to empty
2 Command: ignoring ' = cmdline-plain' as the variable name '' expands to empty
  /src/sys/arch/evbppc/wii/
autoconf.c 114 const char *cmdline = wii_cmdline; local in function:parse_cmdline
116 while (*cmdline != '\0') {
117 const char *cp = cmdline;
132 cmdline += strlen(cmdline) + 1;
  /src/sys/arch/evbarm/armadillo/
armadillo9var.h 61 char cmdline[1]; member in struct:bootparam_tag_cmdline
68 struct bootparam_tag_cmdline cmdline; member in union:bootparam_tag::__anon066a9a25010a
  /src/distrib/utils/embedded/conf/
rpi_inst.conf 38 cat > ${mnt}/boot/cmdline.txt << EOF
48 cmdline=../cmdline.txt key
rpi.conf 51 cat > ${mnt}/boot/cmdline.txt << EOF
61 cmdline=../cmdline.txt key
arm64.conf 64 cat > "${mnt}/boot/cmdline.txt" << EOF
74 cmdline=../../cmdline.txt key
arm64mbr.conf 49 cat > "${mnt}/boot/cmdline.txt" << EOF
59 cmdline=../../cmdline.txt key
armv7.conf 61 cat > "${mnt}/boot/cmdline.txt" << EOF
71 cmdline=../cmdline.txt key
  /src/usr.sbin/lpr/lpc/
lpc.c 73 char *cmdline; variable in typeref:typename:char *
175 cmdline = NULL;
180 cmdline = strdup(elline);
189 if (!parse(cmdline, margv, margc)) {
190 if (cmdline != NULL)
191 free(cmdline);
195 if (cmdline != NULL)
196 free(cmdline);
240 s = strlen(cmdline) + 1;
242 for (cp = cmdline; *cp && (size_t)(cp - cmdline) < s && n < MAX_MARGV; n++)
    [all...]
  /src/usr.sbin/timed/timedc/
timedc.c 64 char cmdline[200]; variable in typeref:typename:char[200]
108 if (fgets(cmdline, sizeof(cmdline), stdin) == NULL)
110 if (cmdline[0] == 0)
184 for (cp = cmdline; argp < &margv[MAX_MARGV - 1] && *cp;) {
  /src/sys/arch/sparc/stand/ofwboot/
boot.c 467 char cmdline[PROM_MAX_PATH]; local in function:main
470 kgets(cmdline, sizeof(cmdline));
472 if (!strcmp(cmdline,"exit") ||
473 !strcmp(cmdline,"halt")) {
475 } else if (!strcmp(cmdline, "?") ||
476 !strcmp(cmdline, "help")) {
481 boothowto = bootoptions(cmdline, bootdev, kernel,
  /src/sys/dev/virtio/arch/x86/
virtio_mmio_cmdline.c 197 static char cmdline[LINE_MAX], *parg = NULL; local in function:virtio_mmio_cmdline_attach
203 strlcpy(cmdline, xen_start_info.cmd_line, sizeof(cmdline));
205 cmdline);
206 parg = strstr(cmdline, VMMIOSTR);
  /src/usr.sbin/certctl/
certctl.sh 111 local t q cmdline
121 cmdline="${cmdline:+$cmdline }$t"
126 cmdline="${cmdline:+$cmdline }'$q'"
128 printf '%s\n' "$cmdline"
  /src/sys/dev/flash/
flash_mtdparts.c 171 * device id. The cmdline follows the following format:
182 flash_size_t flash_size, const char *mtd_id, const char *cmdline)
188 const char *s = strstr(cmdline, mtd_id);
  /src/bin/sh/
options.c 192 options(int cmdline)
199 if (cmdline)
206 if (!cmdline) {
223 if (val == 1 && c == 'c' && cmdline) {
228 minus_o(p, val + (cmdline ? val : 0));
231 val + (cmdline ? val : 0));
232 else if (!cmdline)
247 } else if (cmdline && c == 'r') {
  /src/sys/arch/i386/stand/lib/
exec_multiboot1.c 125 char *cmdline; local in function:exec_multiboot1
137 cmdline = alloc(len);
138 snprintf(cmdline, len, "%s %s", mbp->mbp_file, mbp->mbp_args);
139 mbi->mi_cmdline = (char *) vtophys(cmdline);
  /src/sys/external/bsd/drm2/dist/drm/
drm_atomic_state_helper.c 447 struct drm_cmdline_mode *cmdline = &connector->cmdline_mode; local in function:drm_atomic_helper_connector_tv_reset
450 state->tv.margins.left = cmdline->tv_margins.left;
451 state->tv.margins.right = cmdline->tv_margins.right;
452 state->tv.margins.top = cmdline->tv_margins.top;
453 state->tv.margins.bottom = cmdline->tv_margins.bottom;
  /src/tests/bin/sh/
t_varval.sh 135 atf_test_case cmdline
257 atf_add_test_case cmdline

Completed in 18 milliseconds

1 2