2011-09-02 19:34:48 +02:00
|
|
|
/*
|
|
|
|
* Human Monitor Interface
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2011
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HMP_H
|
|
|
|
#define HMP_H
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "qapi-types.h"
|
2012-07-27 15:55:29 +02:00
|
|
|
#include "qdict.h"
|
2011-09-02 19:34:48 +02:00
|
|
|
|
|
|
|
void hmp_info_name(Monitor *mon);
|
2011-08-26 22:38:13 +02:00
|
|
|
void hmp_info_version(Monitor *mon);
|
2011-09-12 20:10:53 +02:00
|
|
|
void hmp_info_kvm(Monitor *mon);
|
2011-09-12 22:54:20 +02:00
|
|
|
void hmp_info_status(Monitor *mon);
|
2011-09-13 22:16:25 +02:00
|
|
|
void hmp_info_uuid(Monitor *mon);
|
2011-09-14 21:05:49 +02:00
|
|
|
void hmp_info_chardev(Monitor *mon);
|
2011-09-21 20:29:55 +02:00
|
|
|
void hmp_info_mice(Monitor *mon);
|
2011-09-13 22:37:16 +02:00
|
|
|
void hmp_info_migrate(Monitor *mon);
|
2012-08-06 20:42:47 +02:00
|
|
|
void hmp_info_migrate_capabilities(Monitor *mon);
|
2012-08-06 20:42:54 +02:00
|
|
|
void hmp_info_migrate_cache_size(Monitor *mon);
|
2011-09-21 21:38:35 +02:00
|
|
|
void hmp_info_cpus(Monitor *mon);
|
2011-09-21 22:16:47 +02:00
|
|
|
void hmp_info_block(Monitor *mon);
|
2011-09-22 20:56:36 +02:00
|
|
|
void hmp_info_blockstats(Monitor *mon);
|
2011-10-17 20:41:22 +02:00
|
|
|
void hmp_info_vnc(Monitor *mon);
|
2011-10-20 21:01:33 +02:00
|
|
|
void hmp_info_spice(Monitor *mon);
|
2011-10-21 15:41:37 +02:00
|
|
|
void hmp_info_balloon(Monitor *mon);
|
2011-10-21 18:15:33 +02:00
|
|
|
void hmp_info_pci(Monitor *mon);
|
2012-01-18 15:40:49 +01:00
|
|
|
void hmp_info_block_jobs(Monitor *mon);
|
2011-09-15 19:20:28 +02:00
|
|
|
void hmp_quit(Monitor *mon, const QDict *qdict);
|
2011-09-15 19:34:39 +02:00
|
|
|
void hmp_stop(Monitor *mon, const QDict *qdict);
|
2011-09-15 19:41:46 +02:00
|
|
|
void hmp_system_reset(Monitor *mon, const QDict *qdict);
|
2011-09-28 16:06:15 +02:00
|
|
|
void hmp_system_powerdown(Monitor *mon, const QDict *qdict);
|
2011-10-06 19:31:39 +02:00
|
|
|
void hmp_cpu(Monitor *mon, const QDict *qdict);
|
2011-11-22 19:32:37 +01:00
|
|
|
void hmp_memsave(Monitor *mon, const QDict *qdict);
|
2011-11-22 20:26:46 +01:00
|
|
|
void hmp_pmemsave(Monitor *mon, const QDict *qdict);
|
2011-11-22 20:58:31 +01:00
|
|
|
void hmp_cont(Monitor *mon, const QDict *qdict);
|
2012-02-23 13:45:21 +01:00
|
|
|
void hmp_system_wakeup(Monitor *mon, const QDict *qdict);
|
2011-11-23 15:55:53 +01:00
|
|
|
void hmp_inject_nmi(Monitor *mon, const QDict *qdict);
|
2011-11-23 16:11:55 +01:00
|
|
|
void hmp_set_link(Monitor *mon, const QDict *qdict);
|
2011-11-23 16:28:21 +01:00
|
|
|
void hmp_block_passwd(Monitor *mon, const QDict *qdict);
|
2011-11-25 17:38:09 +01:00
|
|
|
void hmp_balloon(Monitor *mon, const QDict *qdict);
|
2011-11-25 17:57:10 +01:00
|
|
|
void hmp_block_resize(Monitor *mon, const QDict *qdict);
|
2011-11-25 19:15:19 +01:00
|
|
|
void hmp_snapshot_blkdev(Monitor *mon, const QDict *qdict);
|
2012-10-18 16:49:24 +02:00
|
|
|
void hmp_drive_mirror(Monitor *mon, const QDict *qdict);
|
2011-11-28 01:54:09 +01:00
|
|
|
void hmp_migrate_cancel(Monitor *mon, const QDict *qdict);
|
2011-11-28 02:18:01 +01:00
|
|
|
void hmp_migrate_set_downtime(Monitor *mon, const QDict *qdict);
|
2011-11-28 14:59:37 +01:00
|
|
|
void hmp_migrate_set_speed(Monitor *mon, const QDict *qdict);
|
2012-08-06 20:42:48 +02:00
|
|
|
void hmp_migrate_set_capability(Monitor *mon, const QDict *qdict);
|
2012-08-06 20:42:54 +02:00
|
|
|
void hmp_migrate_set_cache_size(Monitor *mon, const QDict *qdict);
|
2011-12-07 14:17:51 +01:00
|
|
|
void hmp_set_password(Monitor *mon, const QDict *qdict);
|
2011-12-07 14:47:57 +01:00
|
|
|
void hmp_expire_password(Monitor *mon, const QDict *qdict);
|
2011-12-07 19:02:36 +01:00
|
|
|
void hmp_eject(Monitor *mon, const QDict *qdict);
|
2011-12-08 14:13:50 +01:00
|
|
|
void hmp_change(Monitor *mon, const QDict *qdict);
|
2011-12-14 19:49:14 +01:00
|
|
|
void hmp_block_set_io_throttle(Monitor *mon, const QDict *qdict);
|
2012-01-18 15:40:46 +01:00
|
|
|
void hmp_block_stream(Monitor *mon, const QDict *qdict);
|
2012-01-18 15:40:47 +01:00
|
|
|
void hmp_block_job_set_speed(Monitor *mon, const QDict *qdict);
|
2012-01-18 15:40:48 +01:00
|
|
|
void hmp_block_job_cancel(Monitor *mon, const QDict *qdict);
|
2012-09-28 17:22:51 +02:00
|
|
|
void hmp_block_job_pause(Monitor *mon, const QDict *qdict);
|
|
|
|
void hmp_block_job_resume(Monitor *mon, const QDict *qdict);
|
2012-10-18 16:49:21 +02:00
|
|
|
void hmp_block_job_complete(Monitor *mon, const QDict *qdict);
|
2011-12-05 17:48:01 +01:00
|
|
|
void hmp_migrate(Monitor *mon, const QDict *qdict);
|
2012-03-29 17:38:50 +02:00
|
|
|
void hmp_device_del(Monitor *mon, const QDict *qdict);
|
2012-05-07 06:10:47 +02:00
|
|
|
void hmp_dump_guest_memory(Monitor *mon, const QDict *qdict);
|
2012-04-18 22:34:15 +02:00
|
|
|
void hmp_netdev_add(Monitor *mon, const QDict *qdict);
|
2012-04-16 19:36:32 +02:00
|
|
|
void hmp_netdev_del(Monitor *mon, const QDict *qdict);
|
2012-06-22 20:36:09 +02:00
|
|
|
void hmp_getfd(Monitor *mon, const QDict *qdict);
|
|
|
|
void hmp_closefd(Monitor *mon, const QDict *qdict);
|
2012-08-31 04:56:26 +02:00
|
|
|
void hmp_send_key(Monitor *mon, const QDict *qdict);
|
2012-05-24 18:48:23 +02:00
|
|
|
void hmp_screen_dump(Monitor *mon, const QDict *qdict);
|
2011-09-02 19:34:48 +02:00
|
|
|
|
|
|
|
#endif
|