Lines Matching refs:opts_list_03

77 static QemuOptsList opts_list_03 = {  variable
80 .head = QTAILQ_HEAD_INITIALIZER(opts_list_03.head),
104 qemu_add_opts(&opts_list_03); in register_opts()
352 opts = qemu_opts_parse(&opts_list_03, "key=value", false, NULL); in test_qemu_opt_unset()
434 opts = qemu_opts_parse(&opts_list_03, "", false, &error_abort); in test_opts_parse()
438 opts = qemu_opts_parse(&opts_list_03, "=val", false, &error_abort); in test_opts_parse()
443 opts = qemu_opts_parse(&opts_list_03, "a=1,b=2,,x,a=3", in test_opts_parse()
450 opts = qemu_opts_parse(&opts_list_03, "id=foo,id=bar", in test_opts_parse()
458 opts = qemu_opts_parse(&opts_list_03, "x=y,", false, &error_abort); in test_opts_parse()
463 opts = qemu_opts_parse(&opts_list_03, ",", false, &error_abort); in test_opts_parse()
468 opts = qemu_opts_parse(&opts_list_03, "x=y,id=foo", false, &err); in test_opts_parse()
474 opts = qemu_opts_parse(&opts_list_03, "x=,,id=bar", false, &error_abort); in test_opts_parse()
485 opts = qemu_opts_parse(&opts_list_03, "an,noaus,noaus=", in test_opts_parse()
493 opts = qemu_opts_parse(&opts_list_03, "no", false, &error_abort); in test_opts_parse()
498 opts = qemu_opts_parse(&opts_list_03, "an,noaus,noaus=", true, in test_opts_parse()
506 opts = qemu_opts_parse(&opts_list_03, ",", true, &error_abort); in test_opts_parse()
511 opts = qemu_opts_parse(&opts_list_03, ",,,a=1", true, &error_abort); in test_opts_parse()
517 opts = qemu_opts_parse(&opts_list_03, "=val", true, &error_abort); in test_opts_parse()
527 qemu_opts_reset(&opts_list_03); in test_opts_parse()
740 opts = qemu_opts_parse(&opts_list_03, test[i].params, false, in test_has_help_option()
745 opts = qemu_opts_parse(&opts_list_03, test[i].params, true, in test_has_help_option()
965 opts = qemu_opts_parse(&opts_list_03, "foo=a,foo=b", false, &error_abort); in test_opts_to_qdict_duplicates()