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