Searched refs:DumpCommand (Results 1 – 1 of 1) sorted by relevance
68 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 AudioRecorderTestFragment473 DumpCommand(String command, String description) { in DumpCommand() method in AudioRecorderTestFragment.DumpCommand