Searched refs:msgType (Results 1 - 9 of 9) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
H A DEventReport.java133 private Bmessage.Type parseMsgType(String msgType) throws IllegalArgumentException { argument
135 if (t.name().equals(msgType)) {
140 throw new IllegalArgumentException("Invalid value for msg_type: " + msgType);
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapAppObserver.java222 BluetoothMapUtils.TYPE msgType = BluetoothMapUtils.TYPE.NONE;
246 msgType = BluetoothMapUtils.TYPE.EMAIL;
249 msgType = BluetoothMapUtils.TYPE.IM;
260 + " application of type " + msgType);
262 false, msgType);
H A DBluetoothMapAccountLoader.java86 BluetoothMapUtils.TYPE msgType = (searchIntent.getAction().toString() ==
95 BluetoothMapAccountItem app = createAppItem(rInfo, includeIcon, msgType);
H A DBluetoothMapContent.java516 int msgType = 0;
518 msgType = c.getInt(fi.mSmsColFolder);
520 msgType = c.getInt(fi.mMmsColFolder);
523 msgType = c.getInt(fi.mMessageColFolder);
526 if (msgType == 2) {
939 int msgType = c.getInt(fi.mSmsColType);
940 if (msgType == Sms.MESSAGE_TYPE_INBOX ) {
945 if ((address == null) && msgType == Sms.MESSAGE_TYPE_DRAFT) {
975 int msgType = c.getInt(fi.mSmsColType);
976 if (msgType !
[all...]
H A DBluetoothMapContentObserver.java610 TYPE msgType; field in class:BluetoothMapContentObserver.Event
639 String oldFolder, TYPE msgType) {
642 setFolderPath(folder, msgType);
644 if(msgType == TYPE.EMAIL || msgType == TYPE.IM) {
652 this.msgType = msgType;
655 public Event(String eventType, long handle, String folder, TYPE msgType) { argument
658 setFolderPath(folder, msgType);
659 this.msgType
638 Event(String eventType, long handle, String folder, String oldFolder, TYPE msgType) argument
663 Event(String eventType, long handle, String folder, TYPE msgType, String datetime, String subject, String senderName, String priority) argument
680 Event(String eventType, long handle, String folder, TYPE msgType, String datetime, String subject, String senderName, String priority, long conversationID, String conversationName) argument
704 Event(String eventType, String uci, TYPE msgType, String name, String priority, String lastActivity, long conversationID, String conversationName, int presenceState, String presenceStatus, int chatState) argument
[all...]
H A DBluetoothMapObexServer.java674 BluetoothMapUtils.TYPE msgType;
690 msgType = BluetoothMapUtils.getMsgTypeFromHandle(msgHandle);
691 if(D) Log.d(TAG,"setMessageStatus. Handle:" + handle+", MsgType: "+ msgType);
701 if (!mObserver.setMessageStatusDeleted(handle, msgType, mCurrentFolder,
708 if (!mObserver.setMessageStatusRead(handle, msgType, mBaseUriString, value)) {
1130 * @param overwrite True: The msgType will be overwritten to match the message types supported
/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
H A DPduPersister.java550 final int msgType = headers.getOctet(PduHeaders.MESSAGE_TYPE);
551 final PduBody body = loadBody(msgId, msgType);
552 return createPdu(msgType, headers, body);
618 final int msgType = headers.getOctet(PduHeaders.MESSAGE_TYPE);
619 final PduBody body = loadBody(msgId, msgType);
620 pdu = createPdu(msgType, headers, body);
660 private GenericPdu createPdu(final int msgType, final PduHeaders headers, final PduBody body) argument
662 switch (msgType) {
696 "Unsupported PDU type: " + Integer.toHexString(msgType));
700 "Unrecognized PDU type: " + Integer.toHexString(msgType));
704 loadBody(final long msgId, final int msgType) argument
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/sap/
H A DSapMessage.java184 * @param msgType the SAP message type
186 public SapMessage(int msgType){ argument
187 this.mMsgType = msgType;
206 public void setMsgType(int msgType) { argument
207 this.mMsgType = msgType;
840 // msgType = ID_RIL_UNSOL_CONNECTED;
1172 public static String getMsgTypeName(int msgType) { argument
1174 switch (msgType)
1204 default: return "Unknown Message Type (" + msgType + ")";
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DComposeActivity.java3461 final String msgType;
3464 msgType = "new_message";
3467 msgType = "reply";
3470 msgType = "reply_all";
3473 msgType = "forward";
3476 msgType = "unknown";
3479 return msgType;
3489 final String msgType = getActionString(mComposeMode);
3499 Analytics.getInstance().sendEvent(category, msgType, label, value);

Completed in 194 milliseconds