Searched refs:command (Results 1 - 25 of 31) sorted by relevance

12

/packages/apps/OMA-DM/engine/dmlib/tool-src/dmt_validate/com/mot/treetest/
H A DValidator.java7 //For the future development: command + path + value + lineCount + retCode
8 String command = "";
16 //command = "createl" + suffix + " " + n.path + " " + testVal + count + " 0\n";
17 command = "createl" + suffix + " " + n.path + " " + testVal + "\n";
22 command = "delete " + n.path + "\n" + command;
27 //command = "set" + suffix + " " + n.path + " " + testVal + count + " 0\n";
28 command = "set" + suffix + " " + n.path + " " + testVal + "\n" + command;
33 command
[all...]
H A DTreeTest.java53 String command = "createl" + suffix + " " + n.path + " " + testVal +
55 c.tests = command + c.tests;
75 String command = "createi" + " " + n.path + "\n";
76 c.tests = command + c.tests;
/packages/apps/Music/src/com/android/music/
H A DMediaButtonIntentReceiver.java82 String command = null;
85 command = MediaPlaybackService.CMDSTOP;
89 command = MediaPlaybackService.CMDTOGGLEPAUSE;
92 command = MediaPlaybackService.CMDNEXT;
95 command = MediaPlaybackService.CMDPREVIOUS;
98 command = MediaPlaybackService.CMDPAUSE;
101 command = MediaPlaybackService.CMDPLAY;
105 if (command != null) {
108 if ((MediaPlaybackService.CMDTOGGLEPAUSE.equals(command) ||
109 MediaPlaybackService.CMDPLAY.equals(command))
[all...]
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
H A DMockExecutor.java55 Runnable command = mQueue.removeFirst();
56 command.run();
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DMessageInviteView.java65 Integer command = null;
76 command = UIProvider.MessageOperations.RESPOND_ACCEPT;
78 command = UIProvider.MessageOperations.RESPOND_TENTATIVE;
80 command = UIProvider.MessageOperations.RESPOND_DECLINE;
83 if (command != null) {
85 LogUtils.w("UnifiedEmail", "SENDING INVITE COMMAND, VALUE=%s", command);
86 params.put(UIProvider.MessageOperations.RESPOND_COLUMN, command);
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
H A DDicttool.java91 System.out.println("Syntax: dicttool <command [arguments]>\nAvailable commands:\n");
106 throw new RuntimeException("Unknown command : " + commandName);
108 final Command command = getCommandInstance(commandName);
110 command.setArgs(argsArray);
111 return command;
115 * Executes the specified command with the specified arguments.
120 final Command command = getCommand(arguments);
122 command.run();
125 System.out.println("Exception while processing command "
126 + command
[all...]
/packages/apps/OMA-DM/engine/dmlib/dmengine/dm_ua/hdr/
H A DdmLockCtxMgr.h118 * \param command [in] - command performed on DMT
124 SYNCML_DM_COMMAND_T command);
129 * \param command [in] - command performed on DMT
135 SYNCML_DM_COMMAND_T command);
226 * \param command [in] - command performed on DMT
233 SYNCML_DM_COMMAND_T command);
/packages/apps/Mms/src/com/android/mms/ui/
H A DAttachmentTypeSelectorAdapter.java83 int resource, int command) {
84 AttachmentListItem temp = new AttachmentListItem(title, resource, command);
91 public AttachmentListItem(String title, int resource, int command) { argument
94 mCommand = command;
82 addItem(List<IconListItem> data, String title, int resource, int command) argument
/packages/apps/OMA-DM/engine/javaplugin/api/com/android/omadm/plugin/
H A DIDMClientService.aidl43 * @param alertType the alert 1226 command
62 * @param command the command to pass
66 int injectSoapPackage(String path, String command, String payload);
/packages/apps/OMA-DM/engine/dmlib/dmengine/dm_ua/src/
H A DdmLockCtxMgr.cc258 SYNCML_DM_COMMAND_T command)
285 dm_stat=ReleaseContext( nID, ctx, command );
287 if ((command != SYNCML_DM_ATOMIC) &&
288 (command != SYNCML_DM_COMMIT) &&
299 SYNCML_DM_COMMAND_T command)
321 dm_stat=ReleaseContext( nID, ctx, command );
393 SYNCML_DM_COMMAND_T command)
403 if ( command == SYNCML_DM_COMMIT || command == SYNCML_DM_ROLLBACK )
411 switch(command)
257 ReleaseID( INT32 nID, SYNCML_DM_COMMAND_T command) argument
298 ReleaseIDInternal(INT32 nID, SYNCML_DM_COMMAND_T command) argument
391 ReleaseContext(INT32 nLockID, const DMLockContext& ctx, SYNCML_DM_COMMAND_T command) argument
[all...]
/packages/apps/Email/src/com/android/email/mail/transport/
H A DDiscourseLogger.java78 public void addSentCommand(String command) { argument
79 addLine(command);
H A DSmtpSender.java229 * Send a single command and wait for a single response. Handles responses that continue
233 * @param command The command string to send to the server.
236 private String executeSimpleCommand(String command) throws IOException, MessagingException { argument
237 return executeSensitiveCommand(command, null);
241 * Send a single command and wait for a single response. Handles responses that continue
244 * @param command The command string to send to the server.
245 * @param sensitiveReplacement If the command includes sensitive data (e.g. authentication)
249 private String executeSensitiveCommand(String command, Strin argument
[all...]
/packages/apps/Email/src/com/android/email/mail/store/
H A DImapConnection.java64 static final String IMAP_REDACTED_LOG = "[IMAP command redacted]";
72 /** # of command/response lines to log upon crash. */
103 * @return the login command string to sent to the IMAP server
267 * Send a single command to the server. The command will be preceded by an IMAP command
270 * @param command The command to send to the server
271 * @param sensitive If true, the command will not be logged
272 * @return Returns the command ta
274 sendCommand(String command, boolean sensitive) argument
281 sendCommandInternal(String command, boolean sensitive) argument
326 executeSimpleCommand(String command) argument
371 executeSimpleCommand(String command, boolean sensitive) argument
[all...]
H A DPop3Store.java387 * In extreme cases we'll do a UIDL command per message instead of a bulk
456 * Parse a single-line response. This is returned from a command of the form
489 * Parse a multi-line response. This is returned from a command of the form
697 * The server may not support the CAPA command, so we just eat this Exception
705 * Send a single command and wait for a single line response. Reopens the connection,
708 * @param command The command string to send to the server.
711 private String executeSimpleCommand(String command) throws IOException, MessagingException { argument
712 return executeSensitiveCommand(command, null);
716 * Send a single command an
724 executeSensitiveCommand(String command, String sensitiveReplacement) argument
[all...]
H A DImapFolder.java419 final String command = ImapConstants.UID_SEARCH + " " + searchCriteria;
420 final String[] result = getSearchUids(mConnection.executeSimpleCommand(command));
483 // Break the command up into pieces ending with the string literal length
560 String command = generateDateRangeCommand(startDate, endDate, false);
561 LogUtils.d(Logging.LOG_TAG, "getMessages dateRange " + command.toString());
564 uids = searchForUids(command.toString(), false);
572 command.toString());
573 command = generateDateRangeCommand(startDate, endDate, true);
575 uids = searchForUids(command, true);
577 LogUtils.w(Logging.LOG_TAG, e2, "query failed %s, fatal", command);
[all...]
/packages/services/Telephony/src/com/android/phone/
H A DPhoneInterfaceManager.java143 public int channel, cla, command, p1, p2, p3; field in class:PhoneInterfaceManager.IccAPDUArgument
146 public IccAPDUArgument(int channel, int cla, int command, argument
150 this.command = command;
278 iccArgument.channel, iccArgument.cla, iccArgument.command,
318 iccArgument.cla, iccArgument.command, iccArgument.p1, iccArgument.p2,
357 iccArgument.command, iccArgument.p1, iccArgument.p2, iccArgument.p3,
600 private void handleNullReturnEvent(Message msg, String command) { argument
608 loge(command + ": CommandException: " + ar.exception);
610 loge(command
624 sendRequest(int command, Object argument) argument
633 sendRequest(int command, Object argument, Object argument2) argument
661 sendRequestAsync(int command) argument
669 sendRequestAsync(int command, Object argument) argument
1615 iccTransmitApduLogicalChannel(int channel, int cla, int command, int p1, int p2, int p3, String data) argument
1643 iccTransmitApduBasicChannel(int cla, int command, int p1, int p2, int p3, String data) argument
1666 iccExchangeSimIO(int fileID, int command, int p1, int p2, int p3, String filePath) argument
[all...]
/packages/apps/OMA-DM/engine/dmlib/dmengine/dm_ssession/src/
H A Ddm_ua_handlecommand.cc73 /* Since SyncHdr STATUS doesn't get constructed until the receiving package's STATUS command is
179 DESCRIPTION : The utility function to set up the results data for Exec command.
222 /* Client construct <Data> element no matter there are data from GET command or not. */
774 DESCRIPTION : Check if command should be skipped and decode item URI
779 command
820 command
833 SYNCML_DM_COMMAND_T command)
847 if(command == SYNCML_DM_GET)
875 dm_command_name_table[command],
884 (UINT8 *)dm_command_name_table[command],
829 ProcessStatus(SYNCML_DM_RET_STATUS_T dm_stat, VoidPtr_t userData, UINT8 * p_CmdRefData, SmlItemPtr_t pCommandItem, SYNCML_DM_COMMAND_T command) argument
896 ProcessTndsNode( SYNCML_DM_COMMAND_T command, SmlDmTndNodeListPtr_t p_nodelist, const DMString &parentURI, const DMString &targetURI) argument
1028 ProcessTndsCommand( SYNCML_DM_COMMAND_T command, VoidPtr_t userData, DMAddData & oCommand, DMCommandType cmdType, SmlItemPtr_t p_command_item) argument
1103 ProcessCommand(InstanceID_t id, VoidPtr_t userData, SmlAddPtr_t pContent, SYNCML_DM_COMMAND_T command) argument
[all...]
/packages/apps/Dialer/tests/src/com/android/dialer/util/
H A DFakeAsyncTaskExecutor.java114 public void execute(Runnable command) { argument
118 command, mNextTask));
/packages/apps/OMA-DM/engine/dmlib/dmtapi/native/hdr/
H A DdmtTreeImpl.hpp92 SYNCML_DM_RET_STATUS_T ReleaseTree( SYNCML_DM_COMMAND_T command );
/packages/services/Telecomm/src/com/android/server/telecom/
H A DTelecomServiceImpl.java623 private MainThreadRequest sendRequestAsync(int command, int arg1) { argument
625 mMainThreadHandler.obtainMessage(command, arg1, 0, request).sendToTarget();
630 * Posts the specified command to be executed on the main thread, waits for the request to
633 private Object sendRequest(int command) { argument
636 mMainThreadHandler.handleMessage(mMainThreadHandler.obtainMessage(command, request));
639 MainThreadRequest request = sendRequestAsync(command, 0);
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DHeadsetService.java273 String command,
279 return service.sendVendorSpecificResultCode(device, command, arg);
511 String command,
519 if (!command.equals(BluetoothHeadset.VENDOR_RESULT_CODE_COMMAND_ANDROID)) {
520 Log.w(TAG, "Disallowed unsolicited result code command: " + command);
524 new HeadsetVendorSpecificResultCode(device, command, arg));
272 sendVendorSpecificResultCode(BluetoothDevice device, String command, String arg) argument
510 sendVendorSpecificResultCode(BluetoothDevice device, String command, String arg) argument
H A DHeadsetPhoneState.java340 public HeadsetVendorSpecificResultCode(BluetoothDevice device, String command, String arg) { argument
342 mCommand = command;
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarProvider2Test.java60 * You can run the tests with the following command line:
166 * A generic command interface. This is used to support a sequence of
258 * This command queries the number of events and compares it to the given
277 * This command dumps the list of events to the log for debugging.
292 * This command dumps the list of instances to the log for debugging.
314 * This command queries the number of instances and compares it to the given
339 * When this command runs it verifies that all of the instances in the
428 * When this command runs it verifies that the given instance exists in
438 * Creates a command to check that the given range [startDate,endDate]
2440 * Run thorough set of command sequence
[all...]
/packages/apps/OMA-DM/DMService/src/com/android/omadm/service/
H A DDMClientService.java155 public int injectSoapPackage(String path, String command, String payload) argument
157 if (DBG) logd("injectSoapPackage(\"" + path + "\", \"" + command
160 //return processSerializedTree(serverId, path, command, payload); // FIXME
/packages/apps/OMA-DM/engine/dmlib/dmtapi/native/src/
H A DdmtTree.cc804 SYNCML_DM_RET_STATUS_T DmtTreeImpl::ReleaseTree( SYNCML_DM_COMMAND_T command )
806 SYNCML_DM_RET_STATUS_T dm_stat = dmTreeObj.ReleaseLock( m_nLockID, command );

Completed in 822 milliseconds

12