Home
last modified time | relevance | path

Searched refs:opt_name (Results 1 – 4 of 4) sorted by relevance

/openbmc/openbmc-test-automation/lib/
H A Dopt.tcl9 proc get_arg_req { opt_name } { argument
25 if { [lsearch -exact $longoptions "${opt_name}::"] != -1 } {
28 if { [lsearch -exact $longoptions "${opt_name}:"] != -1 } {
218 regsub -all {^\-[-]?} $opt_list_entry {} opt_name
219 if { $_opt_debug_ } { print_var opt_name }
220 set _opt_arg_req_ [get_arg_req $opt_name]
223 set _opt_cmd_buf_ "global ${opt_name} ; set ${opt_name} 1"
326 regsub -all {^\-[-]?} $option {} opt_name
327 regsub -all {:[:]?$} $opt_name {} opt_name
335 set arg_req [get_arg_req $opt_name]
[all …]
/openbmc/qemu/util/
H A Dqemu-config.c251 char *opt_name; in config_parse_qdict_section() local
259 opt_name = g_strdup_printf("%s.%u", opts->name, i++); in config_parse_qdict_section()
260 subopts = qemu_opts_create(opts, opt_name, 1, errp); in config_parse_qdict_section()
261 g_free(opt_name); in config_parse_qdict_section()
/openbmc/qemu/accel/
H A Daccel-common.c19 AccelClass *accel_find(const char *opt_name) in accel_find() argument
21 char *class_name = g_strdup_printf(ACCEL_CLASS_NAME("%s"), opt_name); in accel_find()
/openbmc/qemu/include/qemu/
H A Daccel.h44 AccelClass *accel_find(const char *opt_name);