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