Home
last modified time | relevance | path

Searched refs:cmd (Results 1 – 20 of 20) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/util/
DNotificationPlayer.java75 public CreationAndCompletionThread(final Command cmd) { in CreationAndCompletionThread() argument
77 mCmd = cmd; in CreationAndCompletionThread()
117 private void startSound(final Command cmd) { in startSound() argument
136 mCompletionThread = new CreationAndCompletionThread(cmd); in startSound()
144 final long delay = SystemClock.elapsedRealtime() - cmd.requestTime; in startSound()
149 LogUtil.w(mTag, "error loading sound for " + cmd.uri, e); in startSound()
153 private void stopSound(final Command cmd) { in stopSound() argument
157 final long delay = SystemClock.elapsedRealtime() - cmd.requestTime; in stopSound()
164 if (cmd.releaseFocus && mAudioManager != null) { in stopSound()
181 Command cmd = null; in run() local
[all …]
/packages/apps/Launcher3/
Dupdate_gallery_files.py52 cmd = 'cp %s/%s WallpaperPicker/%s/' % (gallery_dir, file_path, dir) variable
53 print cmd
54 os.system(cmd)
Dupdate_system_wallpaper_cropper.py56 cmd = 'cp %s %s/%s' % (file_path, framework_dir, dir) variable
57 print cmd
58 os.system(cmd)
/packages/services/Car/car-support-lib/src/android/support/car/app/
DCarProxyActivity.java81 for (Pair<Integer, Object[]> cmd: mCmds) {
82 mCarActivity.dispatchCmd(cmd.first, cmd.second);
373 private void handleCmd(int cmd, Object... args) { in handleCmd() argument
375 mCarActivity.dispatchCmd(cmd, args); in handleCmd()
379 new Pair<Integer, Object[]>(Integer.valueOf(cmd), args); in handleCmd()
DCarActivity.java227 public void dispatchCmd(int cmd, Object... args) { in dispatchCmd() argument
229 switch (cmd) { in dispatchCmd()
288 throw new RuntimeException("Unknown dispatch cmd for CarActivity, " + cmd); in dispatchCmd()
/packages/apps/Music/src/com/android/music/
DMediaPlaybackService.java274 String cmd = intent.getStringExtra("command");
275 MusicUtils.debugLog("mIntentReceiver.onReceive " + action + " / " + cmd);
276 if (CMDNEXT.equals(cmd) || NEXT_ACTION.equals(action)) {
278 } else if (CMDPREVIOUS.equals(cmd) || PREVIOUS_ACTION.equals(action)) {
280 } else if (CMDTOGGLEPAUSE.equals(cmd) || TOGGLEPAUSE_ACTION.equals(action)) {
287 } else if (CMDPAUSE.equals(cmd) || PAUSE_ACTION.equals(action)) {
290 } else if (CMDPLAY.equals(cmd)) {
292 } else if (CMDSTOP.equals(cmd)) {
296 } else if (MediaAppWidgetProvider.CMDAPPWIDGETUPDATE.equals(cmd)) {
647 String cmd = intent.getStringExtra("command"); in onStartCommand() local
[all …]
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
DHostNfcFEmulationManager.java344 private String getByteDump(final byte[] cmd) { in getByteDump() argument
349 if (cmd == null) { in getByteDump()
354 for (; i < cmd.length; i++) { in getByteDump()
355 str.append(String.format(" %02X", cmd[i])); in getByteDump()
356 if ((i % letters == letters - 1) || (i + 1 == cmd.length)) { in getByteDump()
/packages/apps/Nfc/nxp/jni/
Dcom_android_nfc_NativeNfcTag.cpp746 transceive_info.cmd.FelCmd = phNfc_eFelica_Raw; in com_android_nfc_NativeNfcTag_doTransceive()
752 transceive_info.cmd.MfCmd = phHal_eMifareRaw; in com_android_nfc_NativeNfcTag_doTransceive()
763 transceive_info.cmd.MfCmd = (phNfc_eMifareCmdList_t)buf[0]; in com_android_nfc_NativeNfcTag_doTransceive()
771 transceive_info.cmd.JewelCmd = phNfc_eJewel_Raw; in com_android_nfc_NativeNfcTag_doTransceive()
777 transceive_info.cmd.MfCmd = phHal_eMifareRaw; in com_android_nfc_NativeNfcTag_doTransceive()
789 transceive_info.cmd.MfCmd = (phNfc_eMifareCmdList_t)buf[0]; in com_android_nfc_NativeNfcTag_doTransceive()
796 transceive_info.cmd.Iso144434Cmd = phNfc_eIso14443_4_Raw; in com_android_nfc_NativeNfcTag_doTransceive()
800 transceive_info.cmd.Iso15693Cmd = phNfc_eIso15693_Cmd; in com_android_nfc_NativeNfcTag_doTransceive()
1069 uint8_t cmd[] = {0x90, 0x60, 0x00, 0x00, 0x00}; in com_android_nfc_NativeNfcTag_doIsIsoDepNdefFormatable() local
1072 e->SetByteArrayRegion(versionCmd, 0, 5, (jbyte*)cmd); in com_android_nfc_NativeNfcTag_doIsIsoDepNdefFormatable()
/packages/apps/Test/connectivity/sl4n/utils/
Dcommand_receiver.cpp251 std::string cmd; in Call() local
253 cmd = doc[sl4n::kCmdStr].GetString(); in Call()
255 cmd = doc[sl4n::kMethodStr].GetString(); in Call()
258 function_map::const_iterator iter = _funcMap->find(cmd); in Call()
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dpsink/mbs/
DA2dpMediaBrowserService.java391 private void msgPassThru(int cmd) { in msgPassThru() argument
392 Log.d(TAG, "msgPassThru " + cmd); in msgPassThru()
408 mA2dpDevice, cmd, BluetoothAvrcpController.KEY_STATE_PRESSED); in msgPassThru()
410 mA2dpDevice, cmd, BluetoothAvrcpController.KEY_STATE_RELEASED); in msgPassThru()
/packages/apps/Stk/src/com/android/stk/
DStkAppService.java702 private boolean isCmdInteractive(CatCmdMessage cmd) { in isCmdInteractive() argument
703 switch (cmd.getCmdType()) { in isCmdInteractive()
723 DelayedCmd cmd = mStkContext[slotId].mCmdsQ.poll(); in handleDelayedCmd() local
724 if (cmd != null) { in handleDelayedCmd()
727 " id: " + cmd.id + "sim id: " + cmd.slotId); in handleDelayedCmd()
728 switch (cmd.id) { in handleDelayedCmd()
730 handleCmd(cmd.msg, cmd.slotId); in handleDelayedCmd()
733 handleSessionEnd(cmd.slotId); in handleDelayedCmd()
/packages/apps/Nfc/nci/jni/extns/pn54x/src/mifare/
DphNxpExtns_MifareStd.c1736 if((pTransceiveInfo->cmd.MfCmd == phNfc_eMifareAuthentA || in phLibNfc_ChkAuthCmdMFC()
1737 pTransceiveInfo->cmd.MfCmd == phNfc_eMifareAuthentB )) in phLibNfc_ChkAuthCmdMFC()
1770 switch(pTransceiveInfo->cmd.MfCmd) in phLibNfc_MifareMap()
1823 pMappedTranscvIf->tSendData.pBuff[bBuffIdx++] = pTransceiveInfo->cmd.MfCmd; in phLibNfc_MifareMap()
2060 pTransceiveInfo->cmd = Cmd; in phFriNfc_ExtnsTransceive()
2073 pTransceiveInfo->cmd.MfCmd = Cmd.MfCmd; in phFriNfc_ExtnsTransceive()
2119 pTransceiveInfo->cmd.MfCmd = (phNfc_eMifareCmdList_t) phNciNfc_eT2TRaw; in phFriNfc_ExtnsTransceive()
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DMenuExecutor.java370 DataManager manager, JobContext jc, int cmd, Path path) { in execute() argument
372 Log.v(TAG, "Execute cmd: " + cmd + " for " + path); in execute()
375 switch (cmd) { in execute()
/packages/apps/Settings/src/com/android/settings/fuelgauge/
DBatteryHistoryChart.java539 if (rec.cmd == HistoryItem.CMD_CURRENT_TIME in setStats()
540 || rec.cmd == HistoryItem.CMD_RESET) { in setStats()
952 if (rec.cmd == HistoryItem.CMD_CURRENT_TIME in onSizeChanged()
953 || rec.cmd == HistoryItem.CMD_RESET) { in onSizeChanged()
962 if (rec.cmd != HistoryItem.CMD_OVERFLOW in onSizeChanged()
963 && (rec.cmd != HistoryItem.CMD_CURRENT_TIME in onSizeChanged()
/packages/apps/Nfc/nci/jni/extns/pn54x/src/common/
DphNfcTypes.h276 phNfc_uCmdList_t cmd; /* Command for transceive */ member
/packages/apps/Bluetooth/jni/
Dcom_android_bluetooth_hfpclient.cpp570 static jboolean sendATCmdNative(JNIEnv *env, jobject object, jint cmd, in sendATCmdNative() argument
581 if ((status = sBluetoothHfpClientInterface->send_at_cmd(cmd,val1,val2,arg)) != in sendATCmdNative()
/packages/apps/Settings/src/com/android/settings/applications/
DRunningState.java242 Message cmd = mHandler.obtainMessage(MSG_REFRESH_UI); in handleMessage() local
243 cmd.arg1 = update(mApplicationContext, mAm) ? 1 : 0; in handleMessage()
244 mHandler.sendMessage(cmd); in handleMessage()
/packages/apps/Nfc/nci/jni/
DNativeNfcTag.cpp1480 uint8_t cmd[] = {0x90, 0x60, 0x00, 0x00, 0x00}; in nativeNfcTag_doIsNdefFormatable() local
1486 e->SetByteArrayRegion (versionCmd, 0, 5, (jbyte*) cmd); in nativeNfcTag_doIsNdefFormatable()
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarProvider2.java2414 String cmd = values.getAsString("cmd"); in handleEmmaRequest() local
2415 if (cmd.equals("start")) { in handleEmmaRequest()
2419 } else if (cmd.equals("stop")) { in handleEmmaRequest()
/packages/services/Car/bluetooth/bt-map-service/
Dbt_hci_startup_issues.txt13946 <3>[ 61.667205] mdp_arb_overlay_ioctl overlay_set_sub fails=-14, cmd=0xc1386d87 client=hwc, fb_id…
41452 …_hw_utils: audio_extn_utils_send_app_type_cfg: Could not get ctl for mixer cmd - Audio Stream 8 Ap…
42432 …_hw_utils: audio_extn_utils_send_app_type_cfg: Could not get ctl for mixer cmd - Audio Stream 8 Ap…
42848 …_hw_utils: audio_extn_utils_send_app_type_cfg: Could not get ctl for mixer cmd - Audio Stream 8 Ap…
43149 …_hw_utils: audio_extn_utils_send_app_type_cfg: Could not get ctl for mixer cmd - Audio Stream 8 Ap…
69312 133: 129 0 0 0 GIC msm-sdcc (cmd), msm-sdcc (pio)
69313 134: 0 0 0 0 GIC msm-sdcc (cmd), msm-sdcc (pio)
69314 136: 29820 0 0 0 GIC msm-sdcc (cmd), msm-sdcc (pio)
69418 133: 129 0 0 0 GIC msm-sdcc (cmd), msm-sdcc (pio)
69419 134: 0 0 0 0 GIC msm-sdcc (cmd), msm-sdcc (pio)
[all …]