Searched defs:command (Results 1 - 25 of 86) sorted by relevance

1234

/frameworks/base/core/java/android/nfc/
H A DApduList.java19 public void add(byte[] command) { argument
20 commands.add(command);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
H A DCameraFunctionalTest.java110 private void runOnLooper(final Runnable command) throws InterruptedException { argument
116 command.run();
123 fail("Failed to run the command on the looper.");
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DCameraStressTest.java116 private void runOnLooper(final Runnable command) throws InterruptedException { argument
122 command.run();
129 fail("Failed to run the command on the looper.");
H A DMediaRecorderStressTest.java118 private void runOnLooper(final Runnable command) throws InterruptedException { argument
124 command.run();
131 fail("Failed to run the command on the looper.");
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DProviderExecutor.java89 public void execute(Runnable command) {
90 Preconditions.checkNotNull(command);
91 mQueue.add(command);
96 public void execute(Runnable command) { argument
98 Preconditions.checkNotNull(command);
99 mQueue.add(command);
106 final Runnable command = mQueue.take();
107 command.run();
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDemoMode.java23 void dispatchDemoCommand(String command, Bundle args); 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/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/policy/
H A DClock.java221 public void dispatchDemoCommand(String command, Bundle args) { argument
222 if (!mDemoMode && command.equals(COMMAND_ENTER)) {
224 } else if (mDemoMode && command.equals(COMMAND_EXIT)) {
227 } else if (mDemoMode && command.equals(COMMAND_CLOCK)) {
/frameworks/base/services/core/java/com/android/server/location/
H A DLocationProviderInterface.java47 public boolean sendExtraCommand(String command, Bundle extras); argument
H A DPassiveProvider.java111 public boolean sendExtraCommand(String command, Bundle extras) { argument
H A DLocationProviderProxy.java277 public boolean sendExtraCommand(String command, Bundle extras) { argument
282 return service.sendExtraCommand(command, extras);
/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);
H A DToneGenerator.cpp1129 // Update tone gen state machine and select wave gen command
1554 // command: special action requested (see enum gen_command).
1561 unsigned int count, unsigned int command) {
1567 if (command == WAVEGEN_START) {
1577 if (command == WAVEGEN_STOP) {
1560 getSamples(short *outBuffer, unsigned int count, unsigned int command) argument
/frameworks/av/services/audioflinger/
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.h47 virtual bool isSubClassCommand(FastThreadState::Command command) = 0;
82 FastThreadState::Command command; member in class:android::FastThread
/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/app/
H A DUiAutomationConnection.java230 public void executeShellCommand(String command, ParcelFileDescriptor sink) argument
242 java.lang.Process process = Runtime.getRuntime().exec(command);
256 throw new RuntimeException("Error running shell command", ioe);
H A DVoiceInteractor.java319 * Execute a command using the trusted system VoiceInteractionService.
327 * <p>The command is a string that describes the generic operation to be performed.
328 * The command will determine how the properties in extras are interpreted and the set of
333 * @param command The desired command to perform.
334 * @param args Additional arguments to control execution of the command.
336 public CommandRequest(String command, Bundle args) { argument
337 mCommand = command;
430 * The command is a string that describes the generic operation to be performed.
/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/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_slice_header.c477 u32 command; local
505 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &command);
508 if (command > 3)
514 pRefPicListReordering->command[i].reorderingOfPicNumsIdc = command;
516 if ((command == 0) || (command == 1))
526 pRefPicListReordering->command[i].absDiffPicNum = value + 1;
528 else if (command == 2)
533 pRefPicListReordering->command[
[all...]
H A Dh264bsd_slice_header.h77 refPicListReorderingOperation_t command[MAX_NUM_REF_PICS+1]; member in struct:__anon645
95 * end memory_management_control_operation command */
/frameworks/base/core/java/com/android/internal/os/
H A DZygote.java161 * Executes "/system/bin/sh -c &lt;command&gt;" using the exec() system call.
165 * @param command The shell command to execute.
167 public static void execShell(String command) { argument
168 String[] args = { "/system/bin/sh", "-c", command };
179 * prefixed with a space, and appended to the command.
181 * @param command A string builder for the shell command being constructed.
182 * @param args An array of argument strings to be quoted and appended to the command.
185 public static void appendQuotedShellArgs(StringBuilder command, Strin argument
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java64 public void executeCommand(String command, String parameters, ParcelFileDescriptor out) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeUI.java190 public void dispatchDemoCommand(String command, Bundle args) { argument
191 mPanel.dispatchDemoCommand(command, args);

Completed in 2723 milliseconds

1234