aboutsummaryrefslogtreecommitdiff
path: root/android-commands.h
AgeCommit message (Collapse)Author
2015-01-15android-console: Add avd snapshot command stubsGreg Bellows
Add stub functionality to support the Android emulator console "avd snapshot" sub-commands. Specifically, stub functions and entries for the "list", "save", "load", and "del" sub-commands were added along with their proper help messages. Currently, all of the sub-commands return "unsupported" if executed. Signed-off-by: Greg Bellows <greg.bellows@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> [AJB: fix up header] Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
2015-01-15android-console: Add avd name command stubGreg Bellows
Add stub functionality to support the Android emulator console "avd name" command. The proper help messages are displayed, but the command currently returns a message indicating that AVDs are unsupported. Signed-off-by: Greg Bellows <greg.bellows@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
2015-01-15android-console: Add avd start commandGreg Bellows
Add Android emulator console "avd start" commmand and associated help messages. Signed-off-by: Greg Bellows <greg.bellows@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
2015-01-15android-console: Add avd stop commandGreg Bellows
Add Android emulator console "avd stop" commmand and associated help messages. Signed-off-by: Greg Bellows <greg.bellows@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
2015-01-15android-console: Add avd status commandGreg Bellows
Add Android emulator console "avd status" commmand and associated help messages. Signed-off-by: Greg Bellows <greg.bellows@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
2015-01-15android-console: Add base avd command supportGreg Bellows
Add base Android emulator console avd command support and associated help message. Signed-off-by: Greg Bellows <greg.bellows@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> [AJB: fixed up sub-table] Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
2015-01-15android-console: Add event text command stubGreg Bellows
Add Android emulator console "event text" command function stub and help support. The command properly displays help text, but returns a "Not supported" message when executed due to limitations in texting telephony support. Signed-off-by: Greg Bellows <greg.bellows@linaro.org>
2015-01-15android-console: Add event send commandGreg Bellows
Add the Android emulator console "event send" command and associated help messages. The "send" command is used to initiate a given event on the Android emulator instance. Signed-off-by: Greg Bellows <greg.bellows@linaro.org>
2015-01-15android-console: Add event codes commandGreg Bellows
Add the Android emulator console "event codes" command and associated help messages. The "codes" command is used to display a list of available event codes for a specified type. Signed-off-by: Greg Bellows <greg.bellows@linaro.org>
2015-01-15android-console: Add event types commandGreg Bellows
Add the Android emulator console "event types" command and associated help messages. The "types" command is used to display a list of available event types that can be used in other event commands. Signed-off-by: Greg Bellows <greg.bellows@linaro.org>
2015-01-15android-console: Add console base event commandGreg Bellows
Add the base Android emulator console "event" command and infrastructure for adding sub-commands. Signed-off-by: Greg Bellows <greg.bellows@linaro.org> [AJB: minor fix for sub-table] Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
2015-01-15android-console: Add power capacity commandGreg Bellows
Add the Android emulator console "power capacity" command along associated help messages. The "capacity" command allows the battery capacity of the device to be manipulated. Signed-off-by: Greg Bellows <greg.bellows@linaro.org>
2015-01-15android-console: Add power health commandGreg Bellows
Add the Android emulator console "power health" command and associated help messages. The "health" command allows the battery health of the device to be manipulated. Signed-off-by: Greg Bellows <greg.bellows@linaro.org>
2015-01-15android-console: Add power present commandGreg Bellows
Add the Android emulator console "power present" command and associated help messages. The "present" command allows the battery presence in the device to be manipulated. Signed-off-by: Greg Bellows <greg.bellows@linaro.org>
2015-01-15android-console: Add power status commandGreg Bellows
Add the Android emulator console "power status" command and associated help messages. The "status" command allows the battery status of the device to be manipulated. Signed-off-by: Greg Bellows <greg.bellows@linaro.org>
2015-01-15android-console: Add power ac commandGreg Bellows
Add the Android emulator console "power ac" along with the associated help messages. The "ac" command allows the power supply state of the device to be manipulated. Signed-off-by: Greg Bellows <greg.bellows@linaro.org>
2015-01-15android-console: Add power display commandGreg Bellows
Add the Android emulator console "power display" along with the associated help messages. The "display" command allows the current device power and battery state to be displayed. Signed-off-by: Greg Bellows <greg.bellows@linaro.org>
2015-01-15android-console: Add console base power commandGreg Bellows
Added the base Android emulator console power command and infrastructure for adding sub-commands. Signed-off-by: Greg Bellows <greg.bellows@linaro.org> [AJB: fixed up sub-table] Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
2015-01-15android-console: Make 'help' output match the classic emulatorPeter Maydell
Implement the 'help' command ourselves rather than using the monitor's usual version, so we can make the output text match the format of the classic emulator. This might not be necessary but perhaps external tools are parsing the output to see what commands are supported. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2015-01-15android-console: Implement quitPeter Maydell
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2015-01-15android-console: Add support for redir commandsPeter Maydell
Add support for the redir commands which allow addition, removal and listing of TCP and UDP port rediroctions. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2015-01-15monitor.c: Add support for Android consolePeter Maydell
Implement the Android console by hijacking the stock QEMU monitor and implementing a different command set. This commit provides the initial minimal framework and changes to the core monitor code; it implements only the two commands 'help' and 'kill'. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>