Home
last modified time | relevance | path

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

/packages/apps/Mms/src/com/android/mms/transaction/
DNotificationPlayer.java76 public CreationAndCompletionThread(Command cmd) { in CreationAndCompletionThread() argument
78 mCmd = cmd; in CreationAndCompletionThread()
122 private void startSound(Command cmd) { in startSound() argument
139 mCompletionThread = new CreationAndCompletionThread(cmd); in startSound()
147 long delay = SystemClock.uptimeMillis() - cmd.requestTime; in startSound()
153 Log.w(mTag, "error loading sound for " + cmd.uri, e); in startSound()
165 Command cmd = null; in run() local
169 cmd = mCmdQueue.removeFirst(); in run()
172 switch (cmd.code) { in run()
175 startSound(cmd); in run()
[all …]
/packages/apps/Exchange/src/com/android/exchange/service/
DEasServerConnection.java213 public String makeUriString(final String cmd) { in makeUriString() argument
215 if (cmd != null) { in makeUriString()
216 uriString += "?Cmd=" + cmd + makeUserString(); in makeUriString()
221 private String makeUriString(final String cmd, final String extra) { in makeUriString() argument
222 return makeUriString(cmd) + extra; in makeUriString()
341 protected EasResponse sendHttpClientPost(String cmd, final HttpEntity entity, in sendHttpClientPost() argument
343 final boolean isPingCommand = cmd.equals("Ping"); in sendHttpClientPost()
350 if (cmd.startsWith("SmartForward&") || cmd.startsWith("SmartReply&")) { in sendHttpClientPost()
351 final int cmdLength = cmd.indexOf('&'); in sendHttpClientPost()
352 extra = cmd.substring(cmdLength); in sendHttpClientPost()
[all …]
/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/nxp/jni/
Dcom_android_nfc_NativeNfcTag.cpp745 transceive_info.cmd.FelCmd = phNfc_eFelica_Raw; in com_android_nfc_NativeNfcTag_doTransceive()
751 transceive_info.cmd.MfCmd = phHal_eMifareRaw; in com_android_nfc_NativeNfcTag_doTransceive()
762 transceive_info.cmd.MfCmd = (phNfc_eMifareCmdList_t)buf[0]; in com_android_nfc_NativeNfcTag_doTransceive()
770 transceive_info.cmd.JewelCmd = phNfc_eJewel_Raw; in com_android_nfc_NativeNfcTag_doTransceive()
776 transceive_info.cmd.MfCmd = phHal_eMifareRaw; in com_android_nfc_NativeNfcTag_doTransceive()
788 transceive_info.cmd.MfCmd = (phNfc_eMifareCmdList_t)buf[0]; in com_android_nfc_NativeNfcTag_doTransceive()
795 transceive_info.cmd.Iso144434Cmd = phNfc_eIso14443_4_Raw; in com_android_nfc_NativeNfcTag_doTransceive()
799 transceive_info.cmd.Iso15693Cmd = phNfc_eIso15693_Cmd; in com_android_nfc_NativeNfcTag_doTransceive()
1068 uint8_t cmd[] = {0x90, 0x60, 0x00, 0x00, 0x00}; in com_android_nfc_NativeNfcTag_doIsIsoDepNdefFormatable() local
1071 e->SetByteArrayRegion(versionCmd, 0, 5, (jbyte*)cmd); in com_android_nfc_NativeNfcTag_doIsIsoDepNdefFormatable()
/packages/apps/Exchange/src/com/android/exchange/eas/
DEasOutboxSync.java97 String cmd = "SendMail"; in getCommand() local
101 cmd = mSmartSendInfo.isForward() ? "SmartForward" : "SmartReply"; in getCommand()
103 cmd = mSmartSendInfo.generateSmartSendCmd(); in getCommand()
108 cmd += "&SaveInSent=T"; in getCommand()
110 return cmd; in getCommand()
DEasLoadAttachment.java202 final String cmd; in getCommand() local
205 cmd = "ItemOperations"; in getCommand()
215 cmd = "GetAttachment&AttachmentName=" + location; in getCommand()
217 return cmd; in getCommand()
/packages/apps/Stk/src/com/android/stk/
DStkAppService.java693 private boolean isCmdInteractive(CatCmdMessage cmd) { in isCmdInteractive() argument
694 switch (cmd.getCmdType()) { in isCmdInteractive()
714 DelayedCmd cmd = mStkContext[slotId].mCmdsQ.poll(); in handleDelayedCmd() local
715 if (cmd != null) { in handleDelayedCmd()
718 " id: " + cmd.id + "sim id: " + cmd.slotId); in handleDelayedCmd()
719 switch (cmd.id) { in handleDelayedCmd()
721 handleCmd(cmd.msg, cmd.slotId); in handleDelayedCmd()
724 handleSessionEnd(cmd.slotId); in handleDelayedCmd()
/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/apps/Settings/src/com/android/settings/fuelgauge/
DBatteryHistoryChart.java567 if (rec.cmd == HistoryItem.CMD_CURRENT_TIME in setStats()
568 || rec.cmd == HistoryItem.CMD_RESET) { in setStats()
941 if (rec.cmd == HistoryItem.CMD_CURRENT_TIME in onSizeChanged()
942 || rec.cmd == HistoryItem.CMD_RESET) { in onSizeChanged()
951 if (rec.cmd != HistoryItem.CMD_OVERFLOW in onSizeChanged()
952 && (rec.cmd != HistoryItem.CMD_CURRENT_TIME in onSizeChanged()
/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/Bluetooth/jni/
Dcom_android_bluetooth_hfpclient.cpp567 static jboolean sendATCmdNative(JNIEnv *env, jobject object, jint cmd, in sendATCmdNative() argument
576 if ((status = sBluetoothHfpClientInterface->send_at_cmd(cmd,val1,val2,arg)) != in sendATCmdNative()
/packages/apps/Settings/src/com/android/settings/applications/
DRunningState.java244 Message cmd = mHandler.obtainMessage(MSG_REFRESH_UI); in handleMessage() local
245 cmd.arg1 = update(mApplicationContext, mAm) ? 1 : 0; in handleMessage()
246 mHandler.sendMessage(cmd); in handleMessage()
/packages/apps/FMRadio/jni/fmr/
Dfm.h172 enum fm_scan_cmd_t cmd; member
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarProvider2.java2399 String cmd = values.getAsString("cmd"); in handleEmmaRequest() local
2400 if (cmd.equals("start")) { in handleEmmaRequest()
2404 } else if (cmd.equals("stop")) { in handleEmmaRequest()
/packages/inputmethods/LatinIME/dictionaries/
Dfr_wordlist.combined.gz1dictionary=main:fr,locale=fr,description=Français,date=1400639634, ...
Dtr_wordlist.combined.gz1dictionary=main:tr,locale=tr,description=Türkçe,date=1393228155, ...