Searched refs:mmsMsgList (Results 1 – 2 of 2) sorted by relevance
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/map/ |
D | BluetoothMapContentObserverTest.java | 2147 Map<Long, BluetoothMapContentObserver.Msg> mmsMsgList = new HashMap<>(); in actionMessageSentDisconnected_withTypeMms() local 2149 mmsMsgList.put(TEST_HANDLE_ONE, msg); in actionMessageSentDisconnected_withTypeMms() 2165 Assert.assertTrue(mmsMsgList.containsKey(TEST_HANDLE_ONE)); in actionMessageSentDisconnected_withTypeMms() 2192 Map<Long, BluetoothMapContentObserver.Msg> mmsMsgList = new HashMap<>(); in actionMmsSent_withInvalidHandle() local 2194 mmsMsgList.put(TEST_HANDLE_ONE, msg); in actionMmsSent_withInvalidHandle() 2202 mObserver.actionMmsSent(mContext, mIntent, 1, mmsMsgList); in actionMmsSent_withInvalidHandle() 2204 Assert.assertTrue(mmsMsgList.containsKey(TEST_HANDLE_ONE)); in actionMmsSent_withInvalidHandle() 2209 Map<Long, BluetoothMapContentObserver.Msg> mmsMsgList = new HashMap<>(); in actionMmsSent_withTransparency() local 2211 mmsMsgList.put(TEST_HANDLE_ONE, msg); in actionMmsSent_withTransparency() 2223 mObserver.actionMmsSent(mContext, mIntent, 1, mmsMsgList); in actionMmsSent_withTransparency() [all …]
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/ |
D | BluetoothMapContentObserver.java | 4051 Context context, Intent intent, int result, Map<Long, Msg> mmsMsgList) { in actionMmsSent() argument 4083 if (mmsMsgList != null) { in actionMmsSent() 4084 synchronized (mmsMsgList) { in actionMmsSent() 4085 mmsMsgList.remove(handle); in actionMmsSent() 4095 if (mmsMsgList != null) { in actionMmsSent() 4096 synchronized (mmsMsgList) { in actionMmsSent() 4097 Msg msg = mmsMsgList.get(handle); in actionMmsSent()
|