HomeSort by relevance Sort by last modified time
    Searched refs:msgId (Results 1 - 25 of 44) sorted by null

1 2

  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HandleExit.java 55 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId) {
56 handleUnknownChunk(client, type, data, isReply, msgId);
HandleAppName.java 59 boolean isReply, int msgId) {
67 handleUnknownChunk(client, type, data, isReply, msgId);
HandleTest.java 59 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId) {
66 handleUnknownChunk(client, type, data, isReply, msgId);
HandleWait.java 60 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId) {
68 handleUnknownChunk(client, type, data, isReply, msgId);
ChunkHandler.java 58 * If "isReply" is set, then "msgId" will be the ID of the request
66 ByteBuffer data, boolean isReply, int msgId);
73 ByteBuffer data, boolean isReply, int msgId) {
85 + ", msgId=0x" + Integer.toHexString(msgId));
HandleHello.java 75 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId) {
85 handleUnknownChunk(client, type, data, isReply, msgId);
HandleNativeHeap.java 68 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId) {
83 handleUnknownChunk(client, type, data, isReply, msgId);
HandleProfiling.java 67 boolean isReply, int msgId) {
80 handleUnknownChunk(client, type, data, isReply, msgId);
HandleThread.java 74 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId) {
89 handleUnknownChunk(client, type, data, isReply, msgId);
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
EasOutboxService.java 241 private void sendCallback(long msgId, String subject, int status) {
243 ExchangeService.callback().sendMessageStatus(msgId, subject, status, 0);
269 * @param msgId the id of the message we're sending
273 private static OriginalMessageInfo getOriginalMessageInfo(Context context, long msgId) {
283 new String[] {Long.toString(msgId)});
309 private void sendFailed(long msgId, int result) {
312 Message.update(mContext, Message.CONTENT_URI, msgId, cv);
313 sendCallback(msgId, null, result);
322 * @param msgId the _id of the message to send
325 int sendMessage(File cacheDir, long msgId) throws IOException, MessagingException
    [all...]
  /packages/apps/CertInstaller/src/com/android/certinstaller/
ViewHelper.java 33 void showError(int msgId) {
35 v.setText(msgId);
CertFile.java 194 private void toastError(int msgId) {
195 Toast.makeText(this, msgId, Toast.LENGTH_LONG).show();
  /packages/apps/Mms/src/com/android/mms/util/
AddressUtils.java 43 String msgId = uri.getLastPathSegment();
46 builder.appendPath(msgId).appendPath("addr");
  /packages/apps/Phone/src/com/android/phone/
TimeConsumingPreferenceActivity.java 83 int msgId;
88 msgId = R.string.response_error;
92 msgId = R.string.radio_off_error;
97 msgId = R.string.fdn_check_failure;
102 msgId = R.string.exception_error;
109 builder.setMessage(getText(msgId));
FdnSetting.java 331 int msgId;
334 msgId = R.string.oldPin2Label;
338 msgId = R.string.newPin2Label;
342 msgId = R.string.confirmPin2Label;
346 msgId = R.string.label_puk2_code;
352 mButtonChangePin2.setDialogMessage(getText(msgId) + "\n" + getText(strId));
354 mButtonChangePin2.setDialogMessage(msgId);
CallFeaturesSetting.java     [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduPersister.java 356 private PduPart[] loadParts(long msgId) throws MmsException {
358 Uri.parse("content://mms/" + msgId + "/part"),
366 Log.v(TAG, "loadParts(" + msgId + "): no part to load.");
481 private void loadAddress(long msgId, PduHeaders headers) {
483 Uri.parse("content://mms/" + msgId + "/addr"),
555 long msgId = ContentUris.parseId(uri);
594 // Check whether 'msgId' has been assigned a valid value.
595 if (msgId == -1L) {
600 loadAddress(msgId, headers);
609 PduPart[] parts = loadParts(msgId);
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/util/
PduCache.java 142 String msgId = uri.getLastPathSegment();
143 return purgeSingleEntry(Uri.withAppendedPath(Mms.CONTENT_URI, msgId));
199 String msgId = uri.getLastPathSegment();
200 normalizedKey = Uri.withAppendedPath(Mms.CONTENT_URI, msgId);
  /packages/apps/Mms/src/com/android/mms/transaction/
RetryScheduler.java 105 long msgId = ContentUris.parseId(uri);
109 uriBuilder.appendQueryParameter("message", String.valueOf(msgId));
133 int respStatus = getResponseStatus(msgId);
160 respStatus = getRetrieveStatus(msgId);
231 Log.v(TAG, "Cannot found correct pending status for: " + msgId);
239 private int getResponseStatus(long msgID) {
242 Mms.Outbox.CONTENT_URI, null, Mms._ID + "=" + msgID, null, null);
257 private int getRetrieveStatus(long msgID) {
260 Mms.Inbox.CONTENT_URI, null, Mms._ID + "=" + msgID, null, null);
  /packages/apps/Mms/src/com/android/mms/ui/
EditSlideDurationActivity.java 160 private void notifyUser(int msgId) {
163 Toast.makeText(this, msgId, Toast.LENGTH_SHORT).show();
DeliveryReportActivity.java 137 long msgId = 0L;
140 msgId = icicle.getLong("message_id");
143 if (msgId == 0L) {
144 msgId = intent.getLongExtra("message_id", 0L);
147 return msgId;
MessageListAdapter.java 159 long msgId = cursor.getLong(mColumnsMap.mColumnMsgId);
161 MessageItem msgItem = getCachedMessageItem(type, msgId, cursor);
231 public MessageItem getCachedMessageItem(String type, long msgId, Cursor c) {
232 MessageItem item = mMessageItemCache.get(getKey(type, msgId));
ComposeMessageActivity.java 529 * @param msgId Message id of the message. This is the _id of the sms or pdu row and is
536 private MessageItem getMessageItem(String type, long msgId,
538 return mMsgListAdapter.getCachedMessageItem(type, msgId,
658 long msgId = cursor.getLong(COLUMN_ID);
659 deletingLastItem = msgId == mMessageItem.mMsgId;
    [all...]
  /packages/apps/Mms/tests/src/com/android/mms/ui/
ComposeMessageActivityTests.java 143 long msgId = cursor.getLong(mColumnsMap.mColumnMsgId);
145 MessageItem msgItem = mMsgListAdapter.getCachedMessageItem(type, msgId, cursor);
SmsTest.java 256 long msgId = cursor.getLong(COLUMN_ID);
258 mActivity.mMsgListAdapter.getCachedMessageItem(type, msgId, cursor);

Completed in 686 milliseconds

1 2