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

12

/frameworks/base/core/java/android/nfc/
H A DApduList.java19 public void add(byte[] command) { argument
20 commands.add(command);
/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/services/java/com/android/server/location/
H A DLocationProviderInterface.java49 public boolean sendExtraCommand(String command, Bundle extras); argument
H A DPassiveProvider.java116 public boolean sendExtraCommand(String command, Bundle extras) { argument
H A DLocationProviderProxy.java279 public boolean sendExtraCommand(String command, Bundle extras) { argument
284 return service.sendExtraCommand(command, extras);
H A DMockProvider.java164 public boolean sendExtraCommand(String command, Bundle extras) { argument
/frameworks/av/media/libmedia/
H A DIEffect.cpp62 status_t command(uint32_t cmdCode, function in class:android::BpEffect
68 ALOGV("command");
163 status_t status = command(cmdCode, cmdSize, cmd, &replySz, resp);
H A DToneGenerator.cpp1102 // Update tone gen state machine and select wave gen command
1524 // command: special action requested (see enum gen_command).
1531 unsigned int count, unsigned int command) {
1537 if (command == WAVEGEN_START) {
1547 if (command == WAVEGEN_STOP) {
1530 getSamples(short *outBuffer, unsigned int count, unsigned int command) argument
H A DAudioEffect.cpp219 status_t AudioEffect::command(uint32_t cmdCode, function in class:android::AudioEffect
226 ALOGV("command() bad status %d", mStatus);
240 status_t status = mIEffect->command(cmdCode, cmdSize, cmdData, replySize, replyData);
271 return mIEffect->command(EFFECT_CMD_SET_PARAM, sizeof (effect_param_t) + psize, param, &size, &param->status);
311 return mIEffect->command(EFFECT_CMD_SET_PARAM_COMMIT, 0, NULL, &size, NULL);
328 return mIEffect->command(EFFECT_CMD_GET_PARAM, sizeof(effect_param_t) + param->psize, param, &psize, param);
/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/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DCameraStressTest.java133 private void runOnLooper(final Runnable command) throws InterruptedException { argument
139 command.run();
146 fail("Failed to run the command on the looper.");
H A DMediaRecorderStressTest.java124 private void runOnLooper(final Runnable command) throws InterruptedException { argument
130 command.run();
137 fail("Failed to run the command on the looper.");
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiAutomatorBridge.java165 public AccessibilityEvent executeCommandAndWaitForAccessibilityEvent(Runnable command, argument
170 // Execute the command.
171 command.run();
H A DInteractionController.java174 Runnable command = new Runnable() {
183 return runAndWaitForEvents(command, timeout, waitForAll, eventTypes) != null;
187 * Runs a command and waits for a specific accessibility event.
188 * @param command is a Runnable to execute before waiting for the event.
193 private AccessibilityEvent runAndWaitForEvent(Runnable command, long timeout, int eventType) { argument
194 return runAndWaitForEvents(command, timeout, false, eventType);
198 * Runs a command and waits for accessibility events. It is possible to set the wait for all
201 * @param command
207 private AccessibilityEvent runAndWaitForEvents(Runnable command, long timeout, argument
241 event = mUiAutomatorBridge.executeCommandAndWaitForAccessibilityEvent(command,
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_slice_header.c475 u32 command; local
503 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &command);
506 if (command > 3)
512 pRefPicListReordering->command[i].reorderingOfPicNumsIdc = command;
514 if ((command == 0) || (command == 1))
524 pRefPicListReordering->command[i].absDiffPicNum = value + 1;
526 else if (command == 2)
531 pRefPicListReordering->command[
[all...]
H A Dh264bsd_slice_header.h77 refPicListReorderingOperation_t command[MAX_NUM_REF_PICS+1]; member in struct:__anon858
95 * end memory_management_control_operation command */
/frameworks/base/core/java/android/accessibilityservice/
H A DUiTestAutomationBridge.java252 * Executes a command and waits for a specific accessibility event type up
255 * @param command The command to execute before starting to wait for the event.
259 public AccessibilityEvent executeCommandAndWaitForAccessibilityEvent(Runnable command, argument
271 // Execute the command.
272 command.run();
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java68 public void executeCommand(String command, String parameters, ParcelFileDescriptor out) { argument
/frameworks/av/camera/
H A DICamera.cpp391 int command = data.readInt32(); local
394 reply->writeInt32(sendCommand(command, arg1, arg2));
/frameworks/base/services/java/com/android/server/
H A DNativeDaemonConnector.java207 * Make command for daemon, escaping arguments as needed.
213 throw new IllegalArgumentException("unexpected command: " + cmd);
229 * Issue the given command to the native daemon and return a single expected
242 * Issue the given command to the native daemon and return a single expected
261 * Issue the given command to the native daemon and return any
275 * Issue the given command to the native daemon and return any
290 * Issue the given command to the native daemon and return any
324 throw new NativeDaemonConnectorException("problem sending command", e);
356 * Issue a command to the native daemon and return the raw responses.
372 * Issues a list command an
430 NativeDaemonArgumentException(String command, NativeDaemonEvent event) argument
441 NativeDaemonFailureException(String command, NativeDaemonEvent event) argument
[all...]
/frameworks/native/cmds/dumpstate/
H A Dutils.c185 /* forks a command and waits for it to finish */
186 int run_command(const char *title, int timeout_seconds, const char *command, ...) { argument
199 const char *args[1024] = {command};
203 va_start(ap, command);
204 if (title) printf("------ %s (%s", title, command);
213 execvp(command, (char**) args);
214 printf("*** exec(%s): %s\n", command, strerror(errno));
226 printf("*** %s: Killed by signal %d\n", command, WTERMSIG(status));
228 printf("*** %s: Exit code %d\n", command, WEXITSTATUS(status));
230 if (title) printf("[%s: %.1fs elapsed]\n\n", command, elapse
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DModelInterpreter.java455 onCHLD(String command) throws InterpreterEx argument
457 // command starts with "+CHLD="
462 c0 = command.charAt(6);
464 if (command.length() >= 8) {
465 c1 = command.charAt(7);
536 onDial(String command) throws InterpreterEx argument
540 success = simulatedCallState.onDial(command.substring(1));
560 onSMSSend(String command) throws InterpreterEx argument
578 String command = commands[i];
580 if (command
[all...]
/frameworks/support/renderscript/v8/rs_support/
H A DrsContext.h134 const char *command; member in struct:android::renderscript::Context::__anon1573
/frameworks/base/core/java/android/view/
H A DSurfaceView.java685 public void executeCommand(String command, String parameters, ParcelFileDescriptor out) { argument
/frameworks/rs/
H A DrsContext.h194 const char *command; member in struct:android::renderscript::Context::__anon1541
200 watchdog.command = cmd;

Completed in 489 milliseconds

12