Loading include/qemu/option.h +1 −0 Original line number Diff line number Diff line Loading @@ -120,6 +120,7 @@ bool qemu_opt_has_help_opt(QemuOpts *opts); bool qemu_opt_get_bool(QemuOpts *opts, const char *name, bool defval); uint64_t qemu_opt_get_number(QemuOpts *opts, const char *name, uint64_t defval); uint64_t qemu_opt_get_size(QemuOpts *opts, const char *name, uint64_t defval); int qemu_opt_unset(QemuOpts *opts, const char *name); int qemu_opt_set(QemuOpts *opts, const char *name, const char *value); void qemu_opt_set_err(QemuOpts *opts, const char *name, const char *value, Error **errp); Loading util/qemu-option.c +14 −0 Original line number Diff line number Diff line Loading @@ -593,6 +593,20 @@ static const QemuOptDesc *find_desc_by_name(const QemuOptDesc *desc, return NULL; } int qemu_opt_unset(QemuOpts *opts, const char *name) { QemuOpt *opt = qemu_opt_find(opts, name); assert(opts_accepts_any(opts)); if (opt == NULL) { return -1; } else { qemu_opt_del(opt); return 0; } } static void opt_set(QemuOpts *opts, const char *name, const char *value, bool prepend, Error **errp) { Loading Loading
include/qemu/option.h +1 −0 Original line number Diff line number Diff line Loading @@ -120,6 +120,7 @@ bool qemu_opt_has_help_opt(QemuOpts *opts); bool qemu_opt_get_bool(QemuOpts *opts, const char *name, bool defval); uint64_t qemu_opt_get_number(QemuOpts *opts, const char *name, uint64_t defval); uint64_t qemu_opt_get_size(QemuOpts *opts, const char *name, uint64_t defval); int qemu_opt_unset(QemuOpts *opts, const char *name); int qemu_opt_set(QemuOpts *opts, const char *name, const char *value); void qemu_opt_set_err(QemuOpts *opts, const char *name, const char *value, Error **errp); Loading
util/qemu-option.c +14 −0 Original line number Diff line number Diff line Loading @@ -593,6 +593,20 @@ static const QemuOptDesc *find_desc_by_name(const QemuOptDesc *desc, return NULL; } int qemu_opt_unset(QemuOpts *opts, const char *name) { QemuOpt *opt = qemu_opt_find(opts, name); assert(opts_accepts_any(opts)); if (opt == NULL) { return -1; } else { qemu_opt_del(opt); return 0; } } static void opt_set(QemuOpts *opts, const char *name, const char *value, bool prepend, Error **errp) { Loading