Home
last modified time | relevance | path

Searched refs:DumpCommand (Results 1 – 1 of 1) sorted by relevance

/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/audiorecorder/
DAudioRecorderTestFragment.java68 private final Map<String, DumpCommand> mDumpCommands = Map.ofEntries(
70 new DumpCommand("start-recording", "Starts recording audio to file.") {
79 new DumpCommand("stop-recording", "Stops recording audio to file.") {
88 new DumpCommand("start-playback", "Start audio playback.") {
97 new DumpCommand("stop-playback", "Stop audio playback.") {
106 new DumpCommand("help", "Print help information.") {
178 DumpCommand command = mDumpCommands.get(commandString); in runDumpCommand()
194 for (DumpCommand command : mDumpCommands.values()) { in dumpHelp()
468 private abstract class DumpCommand { class in AudioRecorderTestFragment
473 DumpCommand(String command, String description) { in DumpCommand() method in AudioRecorderTestFragment.DumpCommand