Searched defs:msgType (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Mms/src/com/android/mms/transaction/
H A DTransactionService.java248 int msgType = cursor.getInt(columnIndexOfMsgType);
249 int transactionType = getTransactionType(msgType);
251 Log.v(TAG, "onNewIntent: msgType=" + msgType + " transactionType=" +
349 private int getTransactionType(int msgType) { argument
350 switch (msgType) {
358 Log.w(TAG, "Unrecognized MESSAGE_TYPE: " + msgType);
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapContentObserver.java171 TYPE msgType; field in class:BluetoothMapContentObserver.Event
174 String oldFolder, TYPE msgType) {
188 this.msgType = msgType;
203 xmlEvtReport.attribute("", "handle", BluetoothMapUtils.getMapHandle(handle, msgType));
210 xmlEvtReport.attribute("", "msg_type", msgType.name());
262 + evt.folder + " " + evt.oldFolder + " " + evt.msgType.name());
173 Event(String eventType, long handle, String folder, String oldFolder, TYPE msgType) argument
H A DBluetoothMapContent.java110 int msgType = TYPE_SMS; field in class:BluetoothMapContent.FilterInfo
355 int msgType = 0;
356 if (fi.msgType == FilterInfo.TYPE_SMS) {
357 msgType = c.getInt(c.getColumnIndex(Sms.TYPE));
358 } else if (fi.msgType == FilterInfo.TYPE_MMS) {
359 msgType = c.getInt(c.getColumnIndex(Mms.MESSAGE_BOX));
362 if (msgType == 2) {
375 if (fi.msgType == FilterInfo.TYPE_SMS) {
377 } else if (fi.msgType == FilterInfo.TYPE_MMS) {
410 if (fi.msgType
[all...]

Completed in 122 milliseconds