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

123

/frameworks/base/services/java/com/android/server/location/
H A DPassiveProvider.java144 public boolean sendExtraCommand(String command, Bundle extras) { argument
H A DMockProvider.java214 public boolean sendExtraCommand(String command, Bundle extras) { argument
H A DLocationProviderProxy.java436 public boolean sendExtraCommand(String command, Bundle extras) { argument
441 return provider.sendExtraCommand(command, extras);
H A DGpsLocationProvider.java920 public boolean sendExtraCommand(String command, Bundle extras) { argument
925 if ("delete_aiding_data".equals(command)) {
927 } else if ("force_time_injection".equals(command)) {
930 } else if ("force_xtra_injection".equals(command)) {
936 Log.w(TAG, "sendExtraCommand: unknown command " + command);
/frameworks/base/core/tests/hosttests/src/android/content/pm/
H A DPackageManagerHostTestUtils.java131 * @throws AdbCommandRejectedException if adb rejects the command
186 * @throws AdbCommandRejectedException if adb rejects the command
202 * @throws AdbCommandRejectedException if adb rejects the command
245 * @throws AdbCommandRejectedException if adb rejects the command
270 * @throws AdbCommandRejectedException if adb rejects the command
288 * @throws AdbCommandRejectedException if adb rejects the command
306 * @throws AdbCommandRejectedException if adb rejects the command
323 * @throws AdbCommandRejectedException if adb rejects the command
339 * @throws AdbCommandRejectedException if adb rejects the command
355 * @throws AdbCommandRejectedException if adb rejects the command
472 executeShellCommand(String command) argument
[all...]
/frameworks/base/media/libmedia/
H A DIEffect.cpp62 status_t command(uint32_t cmdCode, function in class:android::BpEffect
68 LOGV("command");
156 status_t status = command(cmdCode, cmdSize, cmd, &replySz, resp);
H A DAudioEffect.cpp226 status_t AudioEffect::command(uint32_t cmdCode, function in class:android::AudioEffect
233 LOGV("command() bad status %d", mStatus);
247 status_t status = mIEffect->command(cmdCode, cmdSize, cmdData, replySize, replyData);
278 return mIEffect->command(EFFECT_CMD_SET_PARAM, sizeof (effect_param_t) + psize, param, &size, &param->status);
318 return mIEffect->command(EFFECT_CMD_SET_PARAM_COMMIT, 0, NULL, &size, NULL);
335 return mIEffect->command(EFFECT_CMD_GET_PARAM, sizeof(effect_param_t) + param->psize, param, &psize, param);
H A DVisualizer.cpp174 status = command(VISUALIZER_CMD_CAPTURE, 0, NULL, &replySize, waveform);
175 LOGV("getWaveForm() command returned %d", status);
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java71 private static File COMMAND_FILE = new File(RECOVERY_DIR, "command");
318 * @throws IOException if writing the recovery command file
338 * @throws IOException if writing the recovery command file
377 FileWriter command = new FileWriter(COMMAND_FILE);
379 command.write(arg);
380 command.write("\n");
382 command.close();
385 // Having written the command file, go ahead and reboot
/frameworks/base/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:__anon915
95 * end memory_management_control_operation command */
H A Dh264bsd_dpb.c253 while (order->command[i].reorderingOfPicNumsIdc < 3)
256 if (order->command[i].reorderingOfPicNumsIdc < 2)
258 if (order->command[i].reorderingOfPicNumsIdc == 0)
261 (i32)picNumPred - (i32)order->command[i].absDiffPicNum;
268 (i32)(picNumPred + order->command[i].absDiffPicNum);
281 picNum = (i32)order->command[i].longTermPicNum;
/frameworks/base/include/binder/
H A DIPCThreadState.h99 status_t executeCommand(int32_t command);
/frameworks/base/services/camera/libcameraservice/
H A DCameraHardwareStub.h60 virtual status_t sendCommand(int32_t command, int32_t arg1,
H A DCameraHardwareStub.cpp373 status_t CameraHardwareStub::sendCommand(int32_t command, int32_t arg1, argument
/frameworks/base/libs/rs/
H A DrsContext.h196 const char *command; member in struct:android::renderscript::Context::__anon287
202 watchdog.command = cmd;
H A DrsContext.cpp324 if (rsc->watchdog.command && rsc->watchdog.file) {
326 rsc->watchdog.command, rsc->watchdog.line, rsc->watchdog.file);
/frameworks/base/location/java/android/location/
H A DILocationManager.aidl54 boolean sendExtraCommand(String provider, String command, inout Bundle extras);
/frameworks/base/include/media/
H A DAudioEffect.h368 /* Sends a command and receives a response to/from effect engine.
369 * See audio_effect.h for details on effect command() function, valid command codes
372 virtual status_t command(uint32_t cmdCode,
H A DToneGenerator.h293 unsigned int command);
/frameworks/base/media/java/android/media/audiofx/
H A DAudioEffect.java796 * Send a command to the effect engine. This method is intended to send
802 public int command(int cmdCode, byte[] command, byte[] reply) argument
804 checkState("command()");
805 return native_command(cmdCode, command.length, command, reply.length, reply);
/frameworks/base/core/java/android/view/
H A DViewDebug.java935 static void dispatchCommand(View view, String command, String parameters, argument
941 if (REMOTE_COMMAND_DUMP.equalsIgnoreCase(command)) {
943 } else if (REMOTE_COMMAND_CAPTURE_LAYERS.equalsIgnoreCase(command)) {
947 if (REMOTE_COMMAND_CAPTURE.equalsIgnoreCase(command)) {
949 } else if (REMOTE_COMMAND_OUTPUT_DISPLAYLIST.equalsIgnoreCase(command)) {
951 } else if (REMOTE_COMMAND_INVALIDATE.equalsIgnoreCase(command)) {
953 } else if (REMOTE_COMMAND_REQUEST_LAYOUT.equalsIgnoreCase(command)) {
955 } else if (REMOTE_PROFILE.equalsIgnoreCase(command)) {
/frameworks/base/libs/camera/
H A DICamera.cpp389 int command = data.readInt32(); local
392 reply->writeInt32(sendCommand(command, arg1, arg2));
/frameworks/base/voip/java/com/android/server/sip/
H A DSipSessionGroup.java653 // process the command in a new thread
654 private void doCommandAsync(final EventObject command) { argument
658 processCommand(command);
660 Log.w(TAG, "command error: " + command + ": "
703 private void processCommand(EventObject command) throws SipException { argument
704 if (isLoggable(command)) Log.d(TAG, "process cmd: " + command);
705 if (!process(command)) {
708 + command);
[all...]
/frameworks/base/services/audioflinger/
H A DAudioPolicyService.h177 void insertCommand_l(AudioCommand *command, int delayMs = 0);
192 status_t mStatus; // command status
194 void *mParam; // command parameter (ToneData, VolumeData, ParametersData)
225 AudioCommand mLastCommand; // last processed command (used by dump)

Completed in 878 milliseconds

123