Home
last modified time | relevance | path

Searched refs:options (Results 1 – 25 of 67) sorted by relevance

123

/busybox-1.35.0/docs/
Dposix_conformance.txt10 tool options (not operands, environment variables, return codes, etc..).
12 Some options exist but there is no value in the 'compliant' column: that
40 ar POSIX options ********************* Failed to recognize zip & tar (did not compare to regular ar)
58 ar Busybox specific options:
61 awk POSIX options
66 awk Busybox specific options: None
68 basename POSIX options: None
69 basename Busybox specific options: None
71 cal POSIX options: None
72 cal Busybox specific options:
[all …]
DKconfig-language.txt4 The configuration database is collection of configuration options
7 +- Code maturity level options
83 are applied to all other options within this menu entry (which also
201 <config options>
204 attributes as options.
209 <choice options>
214 options. A choice can only be of type bool or tristate, while a boolean
226 <comment options>
230 possible options are dependencies.
235 <menu options>
[all …]
/busybox-1.35.0/modutils/
Dmodprobe.c312 m->options = gather_options_str(m->options, tokens[2]); in config_file_action()
372 static char *parse_and_add_kcmdline_module_options(char *options, const char *modulename) in parse_and_add_kcmdline_module_options() argument
380 return options; in parse_and_add_kcmdline_module_options()
391 options = gather_options_str(options, kptr); in parse_and_add_kcmdline_module_options()
396 return options; in parse_and_add_kcmdline_module_options()
443 char *fn, *options; in do_modprobe() local
468 options = m2->options; in do_modprobe()
469 m2->options = NULL; in do_modprobe()
470 options = parse_and_add_kcmdline_module_options(options, m2->modname); in do_modprobe()
473 options = gather_options_str(options, G.cmdline_mopts); in do_modprobe()
[all …]
Dmodutils.c120 char *options; in parse_cmdline_module_options() local
123 options = xzalloc(1); in parse_cmdline_module_options()
131 options = xrealloc(options, optlen + 2 + strlen(var) + 2); in parse_cmdline_module_options()
147 optlen += sprintf(options + optlen, fmt, (int)(val - var), var, val); in parse_cmdline_module_options()
151 return options; in parse_cmdline_module_options()
194 int FAST_FUNC bb_init_module(const char *filename, const char *options) in bb_init_module() argument
201 if (!options) in bb_init_module()
202 options = ""; in bb_init_module()
207 return bb_init_module_24(filename, options); in bb_init_module()
220 rc = finit_module(fd, options, 0) != 0; in bb_init_module()
[all …]
Dmodprobe-small.c252 static int load_module(const char *fname, const char *options) in load_module() argument
259 if (!options) in load_module()
260 options = ""; in load_module()
262 dbg1_error_msg("load_module('%s','%s')", fname, options); in load_module()
275 r = finit_module(fd, options, 0) != 0; in load_module()
282 r = (!module_image || init_module(module_image, len, options) != 0); in load_module()
290 dbg1_error_msg("load_module('%s','%s')", fname, options); in load_module()
690 char *s, *deps, *options; in process_module() local
723 options = NULL; in process_module()
726 options = xmalloc_open_read_close(opt_filename, NULL); in process_module()
[all …]
Dmodutils.h29 char *options; /* options from config files */
93 int FAST_FUNC bb_init_module(const char *module, const char *options);
103 int FAST_FUNC bb_init_module_24(const char *module, const char *options);
/busybox-1.35.0/examples/var_service/gpm/
Drun8 options="-D -2 -m /dev/psaux -t ps2"
15 gpm $options
/busybox-1.35.0/coreutils/
DConfig.src9 bool "Support verbose options (usually -v) for various applets"
16 comment "Common options for date and touch"
29 comment "Common options for cp and mv"
39 comment "Common options for df, du, ls"
Duname.c112 #define options "snrvmpioa" macro
149 toprint = getopt32long(argv, options, uname_longopts); in uname_main()
/busybox-1.35.0/util-linux/
Dfbset.c448 unsigned options = 0; in fbset_main() local
465 options |= OPT_READMODE; in fbset_main()
482 options |= OPT_ALL; in fbset_main()
485 options |= OPT_SHOW; in fbset_main()
531 options |= OPT_CHANGE; in fbset_main()
544 if (options & OPT_READMODE) { in fbset_main()
549 options |= OPT_CHANGE; in fbset_main()
553 if (options & OPT_CHANGE) { in fbset_main()
555 if (options & OPT_ALL) in fbset_main()
560 if (options == 0 || (options & OPT_SHOW)) in fbset_main()
Dgetopt.c274 static struct option *add_long_options(struct option *long_options, char *options) in add_long_options() argument
284 tokptr = strtok_r(options, ", \t\n", &options); in add_long_options()
308 tokptr = strtok_r(NULL, ", \t\n", &options); in add_long_options()
DConfig.src10 comment "Common options for mount/umount"
27 specify an offset or cryptographic options to the loopback device.
/busybox-1.35.0/networking/udhcp/
Dpacket.c30 packet->options[0] = DHCP_END; in udhcp_init_header()
92 if (bytes < offsetof(struct dhcp_packet, options) in udhcp_recv_kernel_packet()
155 padding = DHCP_OPTIONS_BUFSIZE - 1 - udhcp_end_option(packet.data.options); in udhcp_send_raw_packet()
243 padding = DHCP_OPTIONS_BUFSIZE - 1 - udhcp_end_option(dhcp_pkt->options); in udhcp_send_kernel_packet()
Ddhcpc.h20 struct option_set *options; /* list of DHCP options to send to server */ member
DConfig.src86 If selected, udhcpc will check some options (such as option 12 -
104 comment "Common options for DHCP applets"
129 Verbosity can be increased with multiple -v options.
136 int "DHCP options slack buffer size"
159 bool "Support RFC 3397 domain search options"
168 bool "Support 802.1Q VLAN parameters options"
173 ID and priority via options 132 and 133 as per 802.1Q.
Ddhcpd.h34 struct option_set *options; /* list of DHCP options loaded from the config file */ member
Ddhcpc.c628 end = udhcp_end_option(packet->options); in add_client_options()
632 packet->options[end + OPT_DATA + len] = i; in add_client_options()
637 packet->options[end + OPT_CODE] = DHCP_PARAM_REQ; in add_client_options()
638 packet->options[end + OPT_LEN] = len; in add_client_options()
639 packet->options[end + OPT_DATA + len] = DHCP_END; in add_client_options()
648 struct option_set *curr = client_data.options; in add_client_options()
679 ci = udhcp_find_option(client_data.options, DHCP_CLIENT_ID, /*dhcpv6:*/ 0); in add_serverid_and_clientid_options()
1271 &client_data.options, DHCP_FQDN, in udhcpc_main()
1315 udhcp_str2optset(optstr, &client_data.options, in udhcpc_main()
1325 &client_data.options, DHCP_VENDOR, in udhcpc_main()
[all …]
/busybox-1.35.0/e2fsprogs/
Dfsck.c971 char *options; in fsck_main() local
995 options = NULL; in fsck_main()
1053 options = xrealloc(options, optpos + 2); in fsck_main()
1054 options[optpos] = arg[j]; in fsck_main()
1060 options[0] = '-'; in fsck_main()
1061 options[optpos + 1] = '\0'; in fsck_main()
1062 *new_args() = options; in fsck_main()
/busybox-1.35.0/procps/
DConfig.src10 default n # all "fast or small" options default to small
/busybox-1.35.0/shell/hush_test/hush-getopts/
Dgetopt_nested.tests5 # What we focus on here is that all options are reported
/busybox-1.35.0/shell/ash_test/ash-getopts/
Dgetopt_nested.tests5 # What we focus on here is that all options are reported
/busybox-1.35.0/networking/
DConfig.src91 string "ifup udhcpc command line options"
95 Command line options to pass to udhcpc from ifup.
96 Intended to alter options not available in /etc/network/interfaces.
Darp.c93 static const char options[] ALIGN1 = variable
130 switch (index_in_strings(options, *args)) { in arp_del()
283 switch (index_in_strings(options, *args)) { in arp_set()
/busybox-1.35.0/shell/ash_test/ash-vars/
Dunset.tests1 # check invalid options are rejected
/busybox-1.35.0/shell/hush_test/hush-vars/
Dunset.tests3 # check invalid options are rejected

123