Searched refs:command (Results 126 - 150 of 244) sorted by relevance

12345678910

/frameworks/av/media/libaudioclient/
H A DIEffect.cpp28 // Maximum command/reply size expected
65 status_t command(uint32_t cmdCode, function in class:android::BpEffect
71 ALOGV("command");
189 status_t status = command(cmdCode, cmdSize, cmd, &replySz, resp);
/frameworks/base/cmds/hid/src/com/android/commands/hid/
H A DEvent.java78 + ", command=" + String.valueOf(mCommand)
99 private void setCommand(String command) { argument
100 mEvent.mCommand = command;
131 throw new IllegalStateException("Event does not contain a command");
143 throw new IllegalStateException("Report command is missing report data");
170 case "command":
/frameworks/base/core/jni/
H A Dcom_android_internal_os_FuseAppLoop.cpp110 void CallOnCommand(jint command, jlong unique, jlong inode, jlong offset, jint size, argument
112 mEnv->CallVoidMethod(mSelf, gOnCommandMethod, command, unique, inode, offset, size, bytes);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
H A DCameraFunctionalTest.java98 private void runOnLooper(final Runnable command) throws InterruptedException { argument
104 command.run();
111 fail("Failed to run the command on the looper.");
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DCameraStressTest.java111 private void runOnLooper(final Runnable command) throws InterruptedException { argument
117 command.run();
124 fail("Failed to run the command on the looper.");
/frameworks/base/services/
H A DAndroid.mk78 # If we ran an mm[m] command, we still want to build the individual
/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DAutofillManagerServiceShellCommand.java223 Runnable command) {
224 command.run();
222 requestSessionCommon(PrintWriter pw, CountDownLatch latch, Runnable command) argument
/frameworks/base/services/core/java/com/android/server/location/
H A DLocationProviderProxy.java274 public boolean sendExtraCommand(String command, Bundle extras) { argument
279 return service.sendExtraCommand(command, extras);
/frameworks/rs/
H A DrsContext.h190 watchdog.command = cmd;
227 const char *command; member in struct:android::renderscript::Context::__anon2121
/frameworks/support/media-compat/java/android/support/v4/media/session/
H A DIMediaSession.aidl38 void sendCommand(String command, in Bundle args, in MediaSessionCompat.ResultReceiverWrapper cb) = 0;
H A DMediaSessionCompat.java775 * command from controllers and the system. This is only valid while in a request callback, such
893 * Called when a controller has sent a custom command to this session.
897 * @param command The command name.
898 * @param extras Optional parameters for the command, may be null.
899 * @param cb A result receiver to which a result may be sent by the command, may be null.
901 public void onCommand(String command, Bundle extras, ResultReceiver cb) { argument
1245 public void onCommand(String command, Bundle extras, ResultReceiver cb) { argument
1247 if (command.equals(MediaControllerCompat.COMMAND_GET_EXTRA_BINDER)) {
1256 } else if (command
2501 sendCommand(String command, Bundle args, ResultReceiverWrapper cb) argument
2803 public final String command; field in class:MediaSessionCompat.MediaSessionImplBase.Command
2807 Command(String command, Bundle extras, ResultReceiver stub) argument
3441 sendCommand(String command, Bundle args, ResultReceiverWrapper cb) argument
[all...]
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DOSUClient.java136 throw new IOException("Expected a launchBrowser command");
324 throw new IOException("Unexpected command: " + pddResponse.getExecCommand());
335 for (OSUCommand command : pddResponse.getCommands()) {
336 if (command.getOSUCommand() == OSUCommandID.UpdateNode) {
337 mods.add((MOData) command.getCommandData());
338 } else if (command.getOSUCommand() != OSUCommandID.NoMOUpdate) {
339 throw new IOException("Unexpected OSU response: " + command);
462 throw new IOException("Unexpected command: " + response);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DRemotePrintDocument.java90 // If there is a next command after a layout is done, then another
91 // update was issued and the next command is another layout, so we
92 // do nothing. However, if there is no next command we may need to
220 // If there is a current command that is running we ask for a
227 // Schedule a layout command.
230 AsyncCommand command = new LayoutCommand(mLooper, mPrintDocumentAdapter,
232 scheduleCommand(command);
249 // Schedule a write command.
250 AsyncCommand command = new WriteCommand(mContext, mLooper, mPrintDocumentAdapter,
253 scheduleCommand(command);
436 scheduleCommand(AsyncCommand command) argument
[all...]
/frameworks/av/include/media/
H A DAudioEffect.h378 /* Sends a command and receives a response to/from effect engine.
379 * See audio_effect.h for details on effect command() function, valid command codes
382 virtual status_t command(uint32_t cmdCode,
H A DToneGenerator.h307 unsigned int command);
/frameworks/av/media/libaudioclient/include/media/
H A DAudioEffect.h378 /* Sends a command and receives a response to/from effect engine.
379 * See audio_effect.h for details on effect command() function, valid command codes
382 virtual status_t command(uint32_t cmdCode,
H A DToneGenerator.h307 unsigned int command);
/frameworks/av/services/audioflinger/
H A DEffects.cpp347 mEffectInterface->command(EFFECT_CMD_RESET, 0, NULL, 0, NULL);
428 status = mEffectInterface->command(EFFECT_CMD_SET_CONFIG,
454 mEffectInterface->command(EFFECT_CMD_SET_PARAM,
477 status_t status = mEffectInterface->command(EFFECT_CMD_INIT,
531 status_t status = mEffectInterface->command(EFFECT_CMD_ENABLE,
561 status_t status = mEffectInterface->command(EFFECT_CMD_DISABLE,
609 status_t AudioFlinger::EffectModule::command(uint32_t cmdCode, function in class:android::AudioFlinger::EffectModule
616 ALOGVV("command(), cmdCode: %d, mEffectInterface: %p", cmdCode, mEffectInterface.get());
670 status_t status = mEffectInterface->command(cmdCode,
818 status = mEffectInterface->command(EFFECT_CMD_SET_VOLUM
1326 status_t AudioFlinger::EffectHandle::command(uint32_t cmdCode, function in class:android::AudioFlinger::EffectHandle
[all...]
H A DEffects.h35 // in the effect library. It prevents concurrent calls to process() and command() functions
66 status_t command(uint32_t cmdCode,
166 // sending disable command.
192 virtual status_t command(uint32_t cmdCode,
/frameworks/base/media/java/android/media/audiofx/
H A DAudioEffect.java840 * Send a command to the effect engine. This method is intended to send
846 public int command(int cmdCode, byte[] command, byte[] reply) argument
848 checkState("command()");
849 return native_command(cmdCode, command.length, command, reply.length, reply);
/frameworks/base/services/core/java/com/android/server/
H A DNativeDaemonConnector.java313 * Make command for daemon, escaping arguments as needed.
319 throw new IllegalArgumentException("Unexpected command: " + cmd);
322 throw new IllegalArgumentException("Arguments must be separate from command");
372 * Issue the given command to the native daemon and return a single expected
385 * Issue the given command to the native daemon and return a single expected
386 * response. Any arguments must be separated from base command so they can
410 * Issue the given command to the native daemon and return any
424 * Issue the given command to the native daemon and return any
427 * command so they can be properly escaped.
440 * Issue the given command t
541 NativeDaemonArgumentException(String command, NativeDaemonEvent event) argument
552 NativeDaemonFailureException(String command, NativeDaemonEvent event) argument
[all...]
/frameworks/av/media/libeffects/proxy/
H A DEffectProxy.cpp70 // The sub effects will be created in effect_command when the first command
265 // Pass the OFFLOAD command to the wrapper.
268 ALOGV("Effect_command: Calling OFFLOAD command");
269 return (*pContext->eHandle[SUB_FX_OFFLOAD])->command(
312 // Send command to sub effects. The command is sent to all sub effects so that their internal
329 *subStatus[i] = (*pContext->eHandle[i])->command(
/frameworks/av/media/libmedia/
H A DVisualizer.cpp240 status = command(VISUALIZER_CMD_MEASURE,
244 ALOGV("getMeasurements() command returned %d", status);
267 status = command(VISUALIZER_CMD_CAPTURE, 0, NULL, &replySize, waveform);
268 ALOGV("getWaveForm() command returned %d", status);
/frameworks/base/core/java/com/android/internal/os/
H A DFuseAppLoop.java214 throw new IllegalArgumentException("Unknown FUSE command: " + msg.what);
229 private void onCommand(int command, long unique, long inode, long offset, int size, argument
246 Message.obtain(args.entry.handler, command, 0, 0, args))) {
/frameworks/base/core/tests/BTtraffic/src/com/android/google/experimental/bttraffic/
H A DBTtraffic.java99 .command(startmonitorCmd)
118 .command(stopmonitorCmd)

Completed in 787 milliseconds

12345678910