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

12

/frameworks/testing/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/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 DUsbCommand.java25 public class UsbCommand extends Svc.Command {
H A DDataCommand.java26 public class DataCommand extends Svc.Command {
H A DPowerCommand.java26 public class PowerCommand extends Svc.Command {
H A DWifiCommand.java26 public class WifiCommand extends Svc.Command {
/frameworks/base/media/java/android/media/
H A DAsyncPlayer.java38 private static final class Command { class in class:AsyncPlayer
52 private final LinkedList<Command> mCmdQueue = new LinkedList();
54 private void startSound(Command cmd) {
87 Command cmd = null;
166 Command cmd = new Command();
188 Command cmd = new Command();
197 private void enqueueLocked(Command cmd) {
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerStreamListener.h37 Command cmd, bool synchronous, const sp<AMessage> &extra);
55 Command mCommand;
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DNotificationPlayer.java43 private static final class Command { class in class:NotificationPlayer
57 private LinkedList<Command> mCmdQueue = new LinkedList();
68 public Command mCmd;
69 public CreationAndCompletionThread(Command cmd) {
127 private void startSound(Command cmd) {
169 Command cmd = null;
285 Command cmd = new Command();
307 Command cmd = new Command();
[all...]
/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/av/services/audioflinger/
H A DFastMixerState.h65 enum Command { enum in struct:android::FastMixerState
H A DFastMixer.h97 FastMixerState::Command mCommand; // current command
/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 DBundle.h32 typedef enum Command { enum
42 } Command; typedef in typeref:enum:Command
74 Command getCommand(void) const { return mCmd; }
75 void setCommand(Command cmd) { mCmd = cmd; }
78 * Command modifiers. Not all modifiers are appropriate for all
244 Command mCmd;
H A DAndroid.mk13 Command.cpp \
/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());
/frameworks/base/services/java/com/android/server/
H A DNativeDaemonConnector.java276 public NativeDaemonEvent execute(Command cmd) throws NativeDaemonConnectorException {
310 public NativeDaemonEvent[] executeForList(Command cmd) throws NativeDaemonConnectorException {
384 loge("NDC Command {" + logCmd + "} took too long (" + (endTime - startTime) + "ms)");
444 * Command builder that handles argument list building. Any arguments must
447 public static class Command { class in class:NativeDaemonConnector
451 public Command(String cmd, Object... args) { method in class:NativeDaemonConnector.Command
458 public Command appendArg(Object arg) {
/frameworks/base/cmds/content/src/com/android/commands/content/
H A DContent.java144 public Command parseCommand() {
359 private static abstract class Command { class in class:Content
363 public Command(Uri uri, int userId) { method in class:Content.Command
396 private static class InsertCommand extends Command {
410 private static class DeleteCommand extends Command {
424 private static class CallCommand extends Command {
542 Command command = parser.parseCommand();

Completed in 583 milliseconds

12