Searched refs:params (Results 1 – 15 of 15) sorted by relevance
/busybox-1.35.0/shell/ |
D | shell_common.c | 36 shell_builtin_read(struct builtin_read_params *params) in shell_builtin_read() argument 57 argv = params->argv; in shell_builtin_read() 69 if (params->opt_n) { in shell_builtin_read() 70 nchars = bb_strtou(params->opt_n, NULL, 10); in shell_builtin_read() 77 if (params->opt_t && !ENABLE_FEATURE_SH_READ_FRAC) { in shell_builtin_read() 78 end_ms = bb_strtou(params->opt_t, NULL, 10); in shell_builtin_read() 85 if (params->opt_t && ENABLE_FEATURE_SH_READ_FRAC) { in shell_builtin_read() 91 end_ms = bb_strtou(params->opt_t, &p, 10); in shell_builtin_read() 113 if (params->opt_u) { in shell_builtin_read() 114 fd = bb_strtou(params->opt_u, NULL, 10); in shell_builtin_read() [all …]
|
D | shell_common.h | 52 shell_builtin_read(struct builtin_read_params *params);
|
D | hush.c | 10985 struct builtin_read_params params; in builtin_read() local 10987 memset(¶ms, 0, sizeof(params)); in builtin_read() 10992 params.read_flags = getopt32(argv, in builtin_read() 10996 ¶ms.opt_n, ¶ms.opt_p, ¶ms.opt_t, ¶ms.opt_u, ¶ms.opt_d in builtin_read() 11000 ¶ms.opt_n, ¶ms.opt_p, ¶ms.opt_t, ¶ms.opt_u in builtin_read() 11006 if ((uint32_t)params.read_flags == (uint32_t)-1) in builtin_read() 11009 params.argv = argv; in builtin_read() 11010 params.setvar = set_local_var_from_halves; in builtin_read() 11011 params.ifs = get_local_var_value("IFS"); /* can be NULL */ in builtin_read() 11014 r = shell_builtin_read(¶ms); in builtin_read()
|
D | ash.c | 14182 struct builtin_read_params params; in readcmd() local 14186 memset(¶ms, 0, sizeof(params)); in readcmd() 14191 params.opt_p = optionarg; in readcmd() 14194 params.opt_n = optionarg; in readcmd() 14197 params.read_flags |= BUILTIN_READ_SILENT; in readcmd() 14200 params.opt_t = optionarg; in readcmd() 14203 params.read_flags |= BUILTIN_READ_RAW; in readcmd() 14206 params.opt_u = optionarg; in readcmd() 14210 params.opt_d = optionarg; in readcmd() 14222 params.argv = argptr; in readcmd() [all …]
|
/busybox-1.35.0/shell/hush_test/hush-misc/ |
D | func_args1.right | 1 params: a b c 3 params: a b c 5 params: a b c
|
D | func_args1.tests | 4 echo "params: $1 $2 $3" 6 echo "params: $1 $2 $3" 8 echo "params: $1 $2 $3"
|
/busybox-1.35.0/shell/ash_test/ash-misc/ |
D | func_args1.right | 1 params: a b c 3 params: a b c 5 params: a b c
|
D | func_args1.tests | 4 echo "params: $1 $2 $3" 6 echo "params: $1 $2 $3" 8 echo "params: $1 $2 $3"
|
/busybox-1.35.0/scripts/kconfig/lxdialog/ |
D | dialog.h | 49 #define TR(params) _tracef params argument
|
/busybox-1.35.0/shell/hush_test/hush-parsing/ |
D | starquoted2.tests | 5 # No params!
|
/busybox-1.35.0/shell/ash_test/ash-parsing/ |
D | starquoted2.tests | 5 # No params!
|
/busybox-1.35.0/docs/ |
D | smallint.txt | 1 smalluint i = index_in_str_array(params, name) + 1;
|
/busybox-1.35.0/findutils/ |
D | find.c | 1155 static const char params[] ALIGN1 = in parse_params() local 1242 int parm = index_in_strings(params, arg); in parse_params()
|
/busybox-1.35.0/ |
D | NOFORK_NOEXEC.lst | 100 dc - longterm (eats stdin if no params) 128 factor - longterm (eats stdin if no params)
|
/busybox-1.35.0/coreutils/ |
D | stty.c | 941 static const char params[] ALIGN1 = in find_param() local 950 int i = index_in_strings(params, name) + 1; in find_param()
|