2011-09-02 21:34:48 +04: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"
|
|
|
|
|
|
|
|
void hmp_info_name(Monitor *mon);
|
2011-08-27 00:38:13 +04:00
|
|
|
void hmp_info_version(Monitor *mon);
|
2011-09-12 22:10:53 +04:00
|
|
|
void hmp_info_kvm(Monitor *mon);
|
2011-09-13 00:54:20 +04:00
|
|
|
void hmp_info_status(Monitor *mon);
|
2011-09-14 00:16:25 +04:00
|
|
|
void hmp_info_uuid(Monitor *mon);
|
2011-09-14 23:05:49 +04:00
|
|
|
void hmp_info_chardev(Monitor *mon);
|
2011-09-21 22:29:55 +04:00
|
|
|
void hmp_info_mice(Monitor *mon);
|
2011-09-14 00:37:16 +04:00
|
|
|
void hmp_info_migrate(Monitor *mon);
|
2011-09-21 23:38:35 +04:00
|
|
|
void hmp_info_cpus(Monitor *mon);
|
2011-09-22 00:16:47 +04:00
|
|
|
void hmp_info_block(Monitor *mon);
|
2011-09-22 22:56:36 +04:00
|
|
|
void hmp_info_blockstats(Monitor *mon);
|
2011-10-17 22:41:22 +04:00
|
|
|
void hmp_info_vnc(Monitor *mon);
|
2011-10-20 23:01:33 +04:00
|
|
|
void hmp_info_spice(Monitor *mon);
|
2011-10-21 17:41:37 +04:00
|
|
|
void hmp_info_balloon(Monitor *mon);
|
2011-10-21 20:15:33 +04:00
|
|
|
void hmp_info_pci(Monitor *mon);
|
2012-01-18 18:40:49 +04:00
|
|
|
void hmp_info_block_jobs(Monitor *mon);
|
2011-09-15 21:20:28 +04:00
|
|
|
void hmp_quit(Monitor *mon, const QDict *qdict);
|
2011-09-15 21:34:39 +04:00
|
|
|
void hmp_stop(Monitor *mon, const QDict *qdict);
|
2011-09-15 21:41:46 +04:00
|
|
|
void hmp_system_reset(Monitor *mon, const QDict *qdict);
|
2011-09-28 18:06:15 +04:00
|
|
|
void hmp_system_powerdown(Monitor *mon, const QDict *qdict);
|
2011-10-06 21:31:39 +04:00
|
|
|
void hmp_cpu(Monitor *mon, const QDict *qdict);
|
2011-11-22 22:32:37 +04:00
|
|
|
void hmp_memsave(Monitor *mon, const QDict *qdict);
|
2011-11-22 23:26:46 +04:00
|
|
|
void hmp_pmemsave(Monitor *mon, const QDict *qdict);
|
2011-11-22 23:58:31 +04:00
|
|
|
void hmp_cont(Monitor *mon, const QDict *qdict);
|
2011-11-23 18:55:53 +04:00
|
|
|
void hmp_inject_nmi(Monitor *mon, const QDict *qdict);
|
2011-11-23 19:11:55 +04:00
|
|
|
void hmp_set_link(Monitor *mon, const QDict *qdict);
|
2011-11-23 19:28:21 +04:00
|
|
|
void hmp_block_passwd(Monitor *mon, const QDict *qdict);
|
2011-11-25 20:38:09 +04:00
|
|
|
void hmp_balloon(Monitor *mon, const QDict *qdict);
|
2011-11-25 20:57:10 +04:00
|
|
|
void hmp_block_resize(Monitor *mon, const QDict *qdict);
|
2011-11-25 22:15:19 +04:00
|
|
|
void hmp_snapshot_blkdev(Monitor *mon, const QDict *qdict);
|
2011-11-28 04:54:09 +04:00
|
|
|
void hmp_migrate_cancel(Monitor *mon, const QDict *qdict);
|
2011-11-28 05:18:01 +04:00
|
|
|
void hmp_migrate_set_downtime(Monitor *mon, const QDict *qdict);
|
2011-11-28 17:59:37 +04:00
|
|
|
void hmp_migrate_set_speed(Monitor *mon, const QDict *qdict);
|
2011-12-07 17:17:51 +04:00
|
|
|
void hmp_set_password(Monitor *mon, const QDict *qdict);
|
2011-12-07 17:47:57 +04:00
|
|
|
void hmp_expire_password(Monitor *mon, const QDict *qdict);
|
2011-12-07 22:02:36 +04:00
|
|
|
void hmp_eject(Monitor *mon, const QDict *qdict);
|
2011-12-08 17:13:50 +04:00
|
|
|
void hmp_change(Monitor *mon, const QDict *qdict);
|
2011-12-14 22:49:14 +04:00
|
|
|
void hmp_block_set_io_throttle(Monitor *mon, const QDict *qdict);
|
2012-01-18 18:40:46 +04:00
|
|
|
void hmp_block_stream(Monitor *mon, const QDict *qdict);
|
2012-01-18 18:40:47 +04:00
|
|
|
void hmp_block_job_set_speed(Monitor *mon, const QDict *qdict);
|
2012-01-18 18:40:48 +04:00
|
|
|
void hmp_block_job_cancel(Monitor *mon, const QDict *qdict);
|
2011-09-02 21:34:48 +04:00
|
|
|
|
|
|
|
#endif
|