Lines Matching refs:opts
509 QemuOpts *opts;
523 opts = qemu_opts_find(list, id);
524 if (!opts) {
530 if (qemu_opt_set(opts, arg, str+offset+1) == -1) {
539 QemuOpts *opts;
548 opts = qemu_opts_create(&qemu_global_opts, NULL, 0);
549 qemu_opt_set(opts, "driver", driver);
550 qemu_opt_set(opts, "property", property);
551 qemu_opt_set(opts, "value", str+offset+1);
568 static int config_write_opts(QemuOpts *opts, void *opaque)
571 const char *id = qemu_opts_id(opts);
578 qemu_opt_foreach(opts, config_write_opt, data, 0);
601 QemuOpts *opts = NULL;
620 opts = qemu_opts_create(list, id, 1);
628 opts = qemu_opts_create(list, NULL, 0);
633 opts == NULL) {
637 if (qemu_opt_set(opts, arg, value) != 0) {