Searched refs:command (Results 26 - 50 of 142) sorted by relevance

123456

/frameworks/base/cmds/dpm/src/com/android/commands/dpm/
H A DDpm.java35 * @param args The command-line arguments
76 String command = nextArgRequired();
77 switch (command) {
88 throw new IllegalArgumentException ("unknown command '" + command + "'");
/frameworks/base/location/lib/java/com/android/location/provider/
H A DLocationProviderBase.java104 public boolean sendExtraCommand(String command, Bundle extras) { argument
105 return onSendExtraCommand(command, extras);
203 * @param command name of the command to send to the provider.
204 * @param extras optional arguments for the command (or null).
205 * The provider may optionally fill the extras Bundle with results from the command.
207 * @return true if the command succeeds.
209 public boolean onSendExtraCommand(String command, Bundle extras) { argument
/frameworks/av/include/media/
H A DIEffect.h36 virtual status_t command(uint32_t cmdCode,
/frameworks/av/services/audioflinger/
H A DFastCapture.h56 virtual bool isSubClassCommand(FastThreadState::Command command);
H A DFastCapture.cpp75 bool FastCapture::isSubClassCommand(FastThreadState::Command command) argument
77 switch ((FastCaptureState::Command) command) {
159 const FastCaptureState::Command command = this->command; local
162 if ((command & FastCaptureState::READ) /*&& isWarm*/) {
184 if (command & FastCaptureState::WRITE) {
H A DFastThread.cpp66 command(FastThreadState::INITIAL),
108 command = next->mCommand;
126 if (command & FastThreadState::IDLE) {
142 dumpState->mCommand = command;
144 // << current, previous, command, dumpState >>
146 switch (command) {
152 // only perform a cold idle command once
187 LOG_ALWAYS_FATAL_IF(!isSubClassCommand(command));
H A DFastMixer.h51 virtual bool isSubClassCommand(FastThreadState::Command command);
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.h37 /* forks a command and waits for it to finish -- terminate args with NULL */
38 int run_command(const char *title, int timeout_seconds, const char *command, ...);
H A Dutils.c304 /* forks a command and waits for it to finish */
305 int run_command(const char *title, int timeout_seconds, const char *command, ...) { argument
318 const char *args[1024] = {command};
331 va_start(ap, command);
332 if (title) printf("------ %s (%s", title, command);
341 execvp(command, (char**) args);
342 printf("*** exec(%s): %s\n", command, strerror(errno));
354 printf("*** %s: Killed by signal %d\n", command, WTERMSIG(status));
356 printf("*** %s: Exit code %d\n", command, WEXITSTATUS(status));
358 if (title) printf("[%s: %.3fs elapsed]\n\n", command, (floa
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DIVoiceInteractor.aidl35 IVoiceInteractorCallback callback, String command, in Bundle extras);
/frameworks/base/media/java/android/media/session/
H A DISessionCallback.aidl28 void onCommand(String command, in Bundle args, in ResultReceiver cb);
H A DISessionController.aidl39 void sendCommand(String command, in Bundle args, in ResultReceiver cb);
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/
H A Dgradlew.bat27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
70 @rem Setup the command line
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DMainInteractionSession.java145 public void onCommand(Caller caller, Request request, String command, Bundle extras) { argument
146 Log.i(TAG, "onCommand: command=" + command + " extras=" + extras);
147 mText.setText("Command: " + command);
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiAutomatorBridge.java102 public AccessibilityEvent executeCommandAndWaitForAccessibilityEvent(Runnable command, argument
104 return mUiAutomation.executeAndWaitForEvent(command,
/frameworks/base/core/java/android/bluetooth/
H A DIBluetoothHeadset.aidl39 in String command,
/frameworks/base/core/java/android/view/
H A DIWindow.aidl43 * command. Any response from the receiver must be sent through the
46 void executeCommand(String command, String parameters, in ParcelFileDescriptor descriptor);
/frameworks/wilhelm/src/itf/
H A DIAndroidEffect.cpp86 SLInterfaceID effectImplementationId, SLuint32 command, SLuint32 commandSize,
92 result = android_genericFx_sendCommand(thiz, effectImplementationId, command, commandSize,
85 IAndroidEffect_SendCommand(SLAndroidEffectItf self, SLInterfaceID effectImplementationId, SLuint32 command, SLuint32 commandSize, void* pCommand, SLuint32 *replySize, void *pReply) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDemoStatusIcons.java51 public void dispatchDemoCommand(String command, Bundle args) { argument
52 if (!mDemoMode && command.equals(COMMAND_ENTER)) {
56 } else if (mDemoMode && command.equals(COMMAND_EXIT)) {
60 } else if (mDemoMode && command.equals(COMMAND_STATUS)) {
/frameworks/webview/chromium/tests/prebuilts/
H A Dandroid-janktesthelper.jar ... windowName Process p java.io.BufferedReader resultReader String command public void setFrameTimeTarget (double) double value public void setPauseThreshold (int ...
/frameworks/av/media/libmedia/
H A DIEffect.cpp62 status_t command(uint32_t cmdCode, function in class:android::BpEffect
68 ALOGV("command");
166 status_t status = command(cmdCode, cmdSize, cmd, &replySz, resp);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DSystemAudioAction.java93 HdmiCecMessage command = HdmiCecMessageBuilder.buildSystemAudioModeRequest(
96 sendCommand(command, new HdmiControlService.SendMessageCallback() {
/frameworks/support/v4/java/android/support/v4/media/session/
H A DIMediaSession.aidl36 void sendCommand(String command, in Bundle args, in MediaSessionCompat.ResultReceiverWrapper cb);
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java64 public void executeCommand(String command, String parameters, ParcelFileDescriptor out) { argument
/frameworks/base/services/core/java/com/android/server/location/
H A DPassiveProvider.java111 public boolean sendExtraCommand(String command, Bundle extras) { argument

Completed in 4022 milliseconds

123456