Searched defs:Command (Results 1 - 14 of 14) sorted by relevance

/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
50 static const char *commandToString(Command 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...]
/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...]
/frameworks/av/include/media/
H A DIStreamSource.h50 enum Command { enum in struct:android::IStreamListener
92 Command cmd, bool synchronous, const sp<AMessage> &msg = NULL) = 0;
/frameworks/base/media/java/android/media/
H A DAsyncPlayer.java37 private static final class Command { class in class:AsyncPlayer
51 private final LinkedList<Command> mCmdQueue = new LinkedList();
53 private void startSound(Command cmd) {
86 Command cmd = null;
196 Command cmd = new Command();
218 Command cmd = new Command();
227 private void enqueueLocked(Command cmd) {
/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/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/base/cmds/content/src/com/android/commands/content/
H A DContent.java160 public Command parseCommand() {
396 private static abstract class Command { class in class:Content
400 public Command(Uri uri, int userId) { method in class:Content.Command
449 private static class InsertCommand extends Command {
463 private static class DeleteCommand extends Command {
477 private static class CallCommand extends Command {
514 private static class ReadCommand extends Command {
621 Command command = parser.parseCommand();
/frameworks/base/services/core/java/com/android/server/
H A DNativeDaemonConnector.java324 public NativeDaemonEvent execute(Command cmd) throws NativeDaemonConnectorException {
363 public NativeDaemonEvent[] executeForList(Command cmd) throws NativeDaemonConnectorException {
437 loge("NDC Command {" + logCmd + "} took too long (" + (endTime - startTime) + "ms)");
497 * Command builder that handles argument list building. Any arguments must
500 public static class Command { class in class:NativeDaemonConnector
504 public Command(String cmd, Object... args) { method in class:NativeDaemonConnector.Command
511 public Command appendArg(Object arg) {
/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/java/android/media/session/
H A DMediaSession.java588 Command cmd = new Command(command, args, resultCb);
1144 private static final class Command { class in class:MediaSession
1149 public Command(String command, Bundle extras, ResultReceiver stub) { method in class:MediaSession.Command
1252 Command cmd = (Command) msg.obj;
/frameworks/base/tools/aapt/
H A DBundle.h22 typedef enum Command { enum
33 } Command; typedef in typeref:enum:Command
76 Command getCommand(void) const { return mCmd; }
77 void setCommand(Command cmd) { mCmd = cmd; }
80 * Command modifiers. Not all modifiers are appropriate for all
270 Command mCmd;
/frameworks/native/services/inputflinger/
H A DInputDispatcher.h584 typedef void (InputDispatcher::*Command)(CommandEntry* commandEntry); typedef in class:android::InputDispatcher
588 CommandEntry(Command command);
591 Command command;
934 CommandEntry* postCommandLocked(Command command);
/frameworks/support/v4/java/android/support/v4/media/session/
H A DMediaSessionCompat.java1516 new Command(command, args, cb.mResultReceiver));
1722 private static final class Command { class in class:MediaSessionCompat.MediaSessionImplBase
1727 public Command(String command, Bundle extras, ResultReceiver stub) { method in class:MediaSessionCompat.MediaSessionImplBase.Command
1839 Command cmd = (Command) msg.obj;

Completed in 4486 milliseconds