Lines Matching +full:package +full:- +full:mode

10  * the COPYING file in the top-level directory.
12 * Contributions after 2012-01-13 are licensed under the terms of the
17 #include "system/address-spaces.h"
23 #include "monitor/monitor-internal.h"
25 #include "qapi/qapi-commands-control.h"
26 #include "qapi/qapi-commands-machine.h"
27 #include "qapi/qapi-commands-misc.h"
48 char **split = g_strsplit(str ?: "", ",", -1); in hmp_split_at_comma()
66 if (info->name) { in hmp_info_name()
67 monitor_printf(mon, "%s\n", info->name); in hmp_info_name()
79 info->qemu->major, info->qemu->minor, info->qemu->micro, in hmp_info_version()
80 info->package); in hmp_info_version()
103 monitor_printf(mon, "sync-profile is %s\n", on ? "on" : "off"); in hmp_sync_profile()
154 const char *read_only = qdict_get_try_str(qdict, "read-only-mode"); in hmp_change()
196 for (info = info_list; info; info = info->next) { in hmp_info_iothreads()
197 value = info->value; in hmp_info_iothreads()
198 monitor_printf(mon, "%s:\n", value->id); in hmp_info_iothreads()
199 monitor_printf(mon, " thread_id=%" PRId64 "\n", value->thread_id); in hmp_info_iothreads()
200 monitor_printf(mon, " poll-max-ns=%" PRId64 "\n", value->poll_max_ns); in hmp_info_iothreads()
201 monitor_printf(mon, " poll-grow=%" PRId64 "\n", value->poll_grow); in hmp_info_iothreads()
202 monitor_printf(mon, " poll-shrink=%" PRId64 "\n", value->poll_shrink); in hmp_info_iothreads()
203 monitor_printf(mon, " aio-max-batch=%" PRId64 "\n", in hmp_info_iothreads()
204 value->aio_max_batch); in hmp_info_iothreads()
237 if (!hmp_mon->rs) { in hmp_info_history()
242 str = readline_get_history(hmp_mon->rs, i); in hmp_info_history()