Searched refs:Command (Results 1 - 25 of 41) sorted by relevance

12

/frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
H A DLauncher.java29 * To add a new sub command, implement {@link Command} and add an instance into COMMANDS array
36 public static abstract class Command { class in class:Launcher
39 public Command(String name) { method in class:Launcher.Command
76 Command command = findCommand(args[0]);
90 private static Command findCommand(String name) {
91 for (Command command : COMMANDS) {
99 private static Command HELP_COMMAND = new Command("help") {
104 for (Command command : COMMANDS) {
129 private static Command[] COMMAND
[all...]
H A DEventsCommand.java22 import com.android.commands.uiautomator.Launcher.Command;
33 public class EventsCommand extends Command {
H A DDumpCommand.java26 import com.android.commands.uiautomator.Launcher.Command;
38 public class DumpCommand extends Command {
/frameworks/base/cmds/svc/src/com/android/commands/svc/
H A DSvc.java21 public static abstract class Command { class in class:Svc
24 public Command(String name) { method in class:Svc.Command
39 Command c = lookupCommand(args[0]);
48 private static Command lookupCommand(String name) {
51 Command c = COMMANDS[i];
59 public static final Command COMMAND_HELP = new Command("help") {
68 Command c = lookupCommand(args[1]);
79 Command c = COMMANDS[i];
87 Command
[all...]
H A DDataCommand.java26 public class DataCommand extends Svc.Command {
H A DUsbCommand.java25 public class UsbCommand extends Svc.Command {
H A DWifiCommand.java26 public class WifiCommand extends Svc.Command {
H A DPowerCommand.java26 public class PowerCommand extends Svc.Command {
/frameworks/av/services/audioflinger/
H A DFastThreadState.h33 typedef uint32_t Command; typedef in struct:android::FastThreadState
34 static const Command
41 Command mCommand; // current command
57 FastThreadState::Command mCommand; // current command
H A DFastCaptureState.h40 // Extends FastThreadState::Command
41 static const Command
H A DFastThread.h47 virtual bool isSubClassCommand(FastThreadState::Command command) = 0;
82 FastThreadState::Command command;
H A DFastCapture.h56 virtual bool isSubClassCommand(FastThreadState::Command command);
H A DFastMixerState.h67 // Extends FastThreadState::Command
68 static const Command
H A DFastMixer.h51 virtual bool isSubClassCommand(FastThreadState::Command command);
H A DFastCapture.cpp75 bool FastCapture::isSubClassCommand(FastThreadState::Command command)
77 switch ((FastCaptureState::Command) command) {
159 const FastCaptureState::Command command = this->command;
/frameworks/base/media/java/android/media/
H A DAsyncPlayer.java36 private static final class Command { class in class:AsyncPlayer
50 private final LinkedList<Command> mCmdQueue = new LinkedList();
52 private void startSound(Command cmd) {
85 Command cmd = null;
164 Command cmd = new Command();
186 Command cmd = new Command();
195 private void enqueueLocked(Command cmd) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DNotificationPlayer.java44 private static final class Command { class in class:NotificationPlayer
58 private LinkedList<Command> mCmdQueue = new LinkedList();
69 public Command mCmd;
70 public CreationAndCompletionThread(Command cmd) {
130 private void startSound(Command cmd) {
172 Command cmd = null;
290 Command cmd = new Command();
317 Command cmd = new Command();
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerStreamListener.h37 Command cmd, bool synchronous, const sp<AMessage> &extra);
55 Command mCommand;
/frameworks/av/include/media/
H A DIStreamSource.h50 enum Command { enum in struct:android::IStreamListener
85 Command cmd, bool synchronous, const sp<AMessage> &msg = NULL) = 0;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphReader.java41 private static interface Command { interface in class:GraphReader
46 private ArrayList<Command> mCommands = new ArrayList<Command>();
58 for (Command command : mCommands) {
63 public void append(Command command) {
80 private static class ImportPackageCommand implements Command {
97 private static class AddLibraryCommand implements Command {
110 private static class AllocateFilterCommand implements Command {
133 private static class AddSourceSlotCommand implements Command {
148 private static class AddTargetSlotCommand implements Command {
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/
H A DTextGraphReader.java41 private ArrayList<Command> mCommands = new ArrayList<Command>();
48 private interface Command { interface in class:TextGraphReader
52 private class ImportPackageCommand implements Command {
69 private class AddLibraryCommand implements Command {
82 private class AllocateFilterCommand implements Command {
105 private class InitFilterCommand implements Command {
124 private class ConnectCommand implements Command {
485 for (Command command : mCommands) {
/frameworks/base/tools/aapt/
H A DAndroid.mk33 Command.cpp \
/frameworks/base/cmds/content/src/com/android/commands/content/
H A DContent.java159 public Command parseCommand() {
395 private static abstract class Command { class in class:Content
399 public Command(Uri uri, int userId) { method in class:Content.Command
432 private static class InsertCommand extends Command {
446 private static class DeleteCommand extends Command {
460 private static class CallCommand extends Command {
497 private static class ReadCommand extends Command {
603 Command command = parser.parseCommand();
/frameworks/wilhelm/src/android/
H A Dandroid_StreamPlayer.h51 void receivedCmd_l(IStreamListener::Command cmd, const sp<AMessage> &msg = NULL);
/frameworks/av/media/libmedia/
H A DIStreamSource.cpp155 Command cmd, bool synchronous, const sp<AMessage> &msg) {
190 Command cmd = static_cast<Command>(data.readInt32());

Completed in 3649 milliseconds

12