/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/ |
D | BluetoothMapbMessageTest.java | 280 …BluetoothMapbMessage newMsg = BluetoothMapbMessage.parse(is, BluetoothMapAppParams.CHARSET_NATIVE); in testSmsEncodeDecodeNativeSubmitPdu() local 281 String decoded = ((BluetoothMapbMessageSms) newMsg).getSmsBody(); in testSmsEncodeDecodeNativeSubmitPdu() 283 newMsg.encode(); in testSmsEncodeDecodeNativeSubmitPdu() 341 …BluetoothMapbMessage newMsg = BluetoothMapbMessage.parse(is, BluetoothMapAppParams.CHARSET_NATIVE); in testSmsEncodeDecodeNativeSubmitPduWithSc() local 342 String decoded = ((BluetoothMapbMessageSms) newMsg).getSmsBody(); in testSmsEncodeDecodeNativeSubmitPduWithSc() 373 … BluetoothMapbMessage newMsg = BluetoothMapbMessage.parse(is, BluetoothMapAppParams.CHARSET_UTF8); in testFolderLengthTruncation() local 376 Log.d(TAG, "newMsg.getFolder(): " + newMsg.getFolder()); in testFolderLengthTruncation() 377 assertTrue("Folder string did not match", expected.equals(newMsg.getFolder())); in testFolderLengthTruncation() 424 …BluetoothMapbMessage newMsg = BluetoothMapbMessage.parse(is, BluetoothMapAppParams.CHARSET_NATIVE); in testSmsMultipartDecode() local 425 String decoded = ((BluetoothMapbMessageSms) newMsg).getSmsBody(); in testSmsMultipartDecode()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/sap/ |
D | SapRilReceiver.java | 268 Message newMsg = mSapServerMsgHandler.obtainMessage(SapServer.SAP_MSG_RFC_REPLY, sapMsg); in sendClientMessage() local 269 mSapServerMsgHandler.sendMessage(newMsg); in sendClientMessage() 286 Message newMsg = mSapServerMsgHandler.obtainMessage(SapServer.SAP_MSG_RIL_IND, sapMsg); in sendRilIndMessage() local 287 mSapServerMsgHandler.sendMessage(newMsg); in sendRilIndMessage()
|
D | SapServer.java | 552 Message newMsg = mSapHandler.obtainMessage(SAP_MSG_RFC_REPLY, sapMsg); in sendClientMessage() local 553 mSapHandler.sendMessage(newMsg); in sendClientMessage() 561 Message newMsg = mSapHandler.obtainMessage(SAP_MSG_RIL_REQ, sapMsg); in sendRilThreadMessage() local 562 mSapHandler.sendMessage(newMsg); in sendRilThreadMessage()
|
/packages/services/Telephony/src/com/android/phone/ |
D | CarrierConfigLoader.java | 200 Message newMsg = obtainMessage(EVENT_LOADED_FROM_DEFAULT, phoneId, -1); 201 newMsg.getData().putBoolean("loaded_from_xml", true); 202 mHandler.sendMessage(newMsg); 269 Message newMsg = obtainMessage(EVENT_LOADED_FROM_CARRIER, phoneId, -1); 270 newMsg.getData().putBoolean("loaded_from_xml", true); 271 sendMessage(newMsg);
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
D | ConversationViewFragment.java | 1657 final ConversationMessage newMsg = newCursor.getMessage(); in processInPlaceUpdates() local 1663 if (!newMsg.isEqual(oldMsg)) { in processInPlaceUpdates() 1664 mAdapter.updateItemsForMessage(newMsg, changedOverlayPositions); in processInPlaceUpdates() 1666 pos, newMsg.id, newMsg.sendingState); in processInPlaceUpdates() 1670 if (!TextUtils.equals(newMsg.bodyHtml, oldMsg.bodyHtml) || in processInPlaceUpdates() 1671 !TextUtils.equals(newMsg.bodyText, oldMsg.bodyText)) { in processInPlaceUpdates() 1673 idsOfChangedBodies.add('"' + mTemplates.getMessageDomId(newMsg) + '"'); in processInPlaceUpdates() 1674 LogUtils.i(LOG_TAG, "msg #%d (%d): detected body change", pos, newMsg.id); in processInPlaceUpdates()
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
D | DockService.java | 333 Message newMsg = mServiceHandler.obtainMessage(MSG_TYPE_UNDOCKED_PERMANENT, state, in msgTypeUndockedTemporary() local 335 mServiceHandler.sendMessageDelayed(newMsg, UNDOCKED_GRACE_PERIOD); in msgTypeUndockedTemporary() 359 Message newMsg = mServiceHandler.obtainMessage( in msgTypeUndockedPermanent() local 361 mServiceHandler.sendMessageDelayed(newMsg, in msgTypeUndockedPermanent()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
D | BluetoothMapContentObserver.java | 2501 Msg newMsg = new Msg(handle, folderId, 1); // TODO: Create define for read-state in pushMessage() local 2502 newMsg.transparent = (transparent == 1) ? true : false; in pushMessage() 2505 newMsg.localInitiatedSend = true; in pushMessage() 2507 getMsgListMsg().put(handle, newMsg); in pushMessage() 2585 Msg newMsg = new Msg(id, type, threadId, readFlag); in pushMessage() local 2586 getMsgListSms().put(id, newMsg); in pushMessage() 2767 Msg newMsg = new Msg(id, type, threadId, readStatus); in pushMmsToFolder() local 2768 newMsg.localInitiatedSend = true; in pushMmsToFolder() 2769 getMsgListMms().put(id, newMsg); in pushMmsToFolder()
|