Home
last modified time | relevance | path

Searched refs:params (Results 1 – 15 of 15) sorted by relevance

/busybox-1.35.0/shell/
Dshell_common.c36 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 …]
Dshell_common.h52 shell_builtin_read(struct builtin_read_params *params);
Dhush.c10985 struct builtin_read_params params; in builtin_read() local
10987 memset(&params, 0, sizeof(params)); in builtin_read()
10992 params.read_flags = getopt32(argv, in builtin_read()
10996 &params.opt_n, &params.opt_p, &params.opt_t, &params.opt_u, &params.opt_d in builtin_read()
11000 &params.opt_n, &params.opt_p, &params.opt_t, &params.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(&params); in builtin_read()
Dash.c14182 struct builtin_read_params params; in readcmd() local
14186 memset(&params, 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/
Dfunc_args1.right1 params: a b c
3 params: a b c
5 params: a b c
Dfunc_args1.tests4 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/
Dfunc_args1.right1 params: a b c
3 params: a b c
5 params: a b c
Dfunc_args1.tests4 echo "params: $1 $2 $3"
6 echo "params: $1 $2 $3"
8 echo "params: $1 $2 $3"
/busybox-1.35.0/scripts/kconfig/lxdialog/
Ddialog.h49 #define TR(params) _tracef params argument
/busybox-1.35.0/shell/hush_test/hush-parsing/
Dstarquoted2.tests5 # No params!
/busybox-1.35.0/shell/ash_test/ash-parsing/
Dstarquoted2.tests5 # No params!
/busybox-1.35.0/docs/
Dsmallint.txt1 smalluint i = index_in_str_array(params, name) + 1;
/busybox-1.35.0/findutils/
Dfind.c1155 static const char params[] ALIGN1 = in parse_params() local
1242 int parm = index_in_strings(params, arg); in parse_params()
/busybox-1.35.0/
DNOFORK_NOEXEC.lst100 dc - longterm (eats stdin if no params)
128 factor - longterm (eats stdin if no params)
/busybox-1.35.0/coreutils/
Dstty.c941 static const char params[] ALIGN1 = in find_param() local
950 int i = index_in_strings(params, name) + 1; in find_param()