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