Searched defs:cmd (Results 1 - 14 of 14) sorted by relevance

/packages/apps/Launcher3/
H A Dupdate_gallery_files.py52 cmd = 'cp %s/%s WallpaperPicker/%s/' % (gallery_dir, file_path, dir) variable
53 print cmd
54 os.system(cmd)
H A Dupdate_system_wallpaper_cropper.py56 cmd = 'cp %s %s/%s' % (file_path, framework_dir, dir) variable
57 print cmd
58 os.system(cmd)
/packages/apps/Test/connectivity/sl4n/utils/
H A Dcommand_receiver.cpp251 std::string cmd; local
253 cmd = doc[sl4n::kCmdStr].GetString();
255 cmd = doc[sl4n::kMethodStr].GetString();
258 function_map::const_iterator iter = _funcMap->find(cmd);
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dpsink/mbs/
H A DA2dpMediaBrowserService.java391 private void msgPassThru(int cmd) { argument
392 Log.d(TAG, "msgPassThru " + cmd);
408 mA2dpDevice, cmd, BluetoothAvrcpController.KEY_STATE_PRESSED);
410 mA2dpDevice, cmd, BluetoothAvrcpController.KEY_STATE_RELEASED);
/packages/apps/Messaging/src/com/android/messaging/util/
H A DNotificationPlayer.java75 public CreationAndCompletionThread(final Command cmd) { argument
77 mCmd = cmd;
117 private void startSound(final Command cmd) { argument
136 mCompletionThread = new CreationAndCompletionThread(cmd);
144 final long delay = SystemClock.elapsedRealtime() - cmd.requestTime;
149 LogUtil.w(mTag, "error loading sound for " + cmd.uri, e);
153 private void stopSound(final Command cmd) { argument
157 final long delay = SystemClock.elapsedRealtime() - cmd.requestTime;
164 if (cmd.releaseFocus && mAudioManager != null) {
181 Command cmd
317 enqueueLocked(final Command cmd) argument
[all...]
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
H A DHostNfcFEmulationManager.java344 private String getByteDump(final byte[] cmd) { argument
349 if (cmd == null) {
354 for (; i < cmd.length; i++) {
355 str.append(String.format(" %02X", cmd[i]));
356 if ((i % letters == letters - 1) || (i + 1 == cmd.length)) {
/packages/services/Car/car-support-lib/src/android/support/car/app/
H A DCarProxyActivity.java81 for (Pair<Integer, Object[]> cmd: mCmds) {
82 mCarActivity.dispatchCmd(cmd.first, cmd.second);
373 private void handleCmd(int cmd, Object... args) { argument
375 mCarActivity.dispatchCmd(cmd, args);
379 new Pair<Integer, Object[]>(Integer.valueOf(cmd), args);
H A DCarActivity.java227 public void dispatchCmd(int cmd, Object... args) { argument
229 switch (cmd) {
288 throw new RuntimeException("Unknown dispatch cmd for CarActivity, " + cmd);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DMenuExecutor.java370 DataManager manager, JobContext jc, int cmd, Path path) {
372 Log.v(TAG, "Execute cmd: " + cmd + " for " + path);
375 switch (cmd) {
409 " ms to execute cmd for " + path);
369 execute( DataManager manager, JobContext jc, int cmd, Path path) argument
/packages/apps/Bluetooth/jni/
H A Dcom_android_bluetooth_hfpclient.cpp570 static jboolean sendATCmdNative(JNIEnv *env, jobject object, jint cmd, argument
581 if ((status = sBluetoothHfpClientInterface->send_at_cmd(cmd,val1,val2,arg)) !=
583 ALOGE("Failed to send cmd, status: %d", status);
/packages/apps/Nfc/nxp/jni/
H A Dcom_android_nfc_NativeNfcTag.cpp746 transceive_info.cmd.FelCmd = phNfc_eFelica_Raw;
752 transceive_info.cmd.MfCmd = phHal_eMifareRaw;
763 transceive_info.cmd.MfCmd = (phNfc_eMifareCmdList_t)buf[0];
771 transceive_info.cmd.JewelCmd = phNfc_eJewel_Raw;
777 transceive_info.cmd.MfCmd = phHal_eMifareRaw;
789 transceive_info.cmd.MfCmd = (phNfc_eMifareCmdList_t)buf[0];
796 transceive_info.cmd.Iso144434Cmd = phNfc_eIso14443_4_Raw;
800 transceive_info.cmd.Iso15693Cmd = phNfc_eIso15693_Cmd;
1069 uint8_t cmd[] = {0x90, 0x60, 0x00, 0x00, 0x00}; local
1070 // Identifies as DESfire, use get version cmd t
[all...]
/packages/apps/Nfc/nci/jni/
H A DNativeNfcTag.cpp1480 uint8_t cmd[] = {0x90, 0x60, 0x00, 0x00, 0x00}; local
1484 /* Identifies as DESfire, use get version cmd to be sure */
1486 e->SetByteArrayRegion (versionCmd, 0, 5, (jbyte*) cmd);
/packages/apps/Nfc/nci/jni/extns/pn54x/src/common/
H A DphNfcTypes.h276 phNfc_uCmdList_t cmd; /* Command for transceive */ member in struct:phNfc_sTransceiveInfo
/packages/apps/Stk/src/com/android/stk/
H A DStkAppService.java178 static final String CMD_MSG = "cmd message";
498 CatLog.d(LOG_TAG, "Current cmd type: " +
702 private boolean isCmdInteractive(CatCmdMessage cmd) { argument
703 switch (cmd.getCmdType()) {
723 DelayedCmd cmd = mStkContext[slotId].mCmdsQ.poll();
724 if (cmd != null) {
727 " id: " + cmd.id + "sim id: " + cmd.slotId);
728 switch (cmd.id) {
730 handleCmd(cmd
[all...]

Completed in 1678 milliseconds