Home
last modified time | relevance | path

Searched refs:Msg (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/map/
DMsgTest.java36 BluetoothMapContentObserver.Msg msg = in constructor()
37 new BluetoothMapContentObserver.Msg(TEST_ID, TEST_FOLDER_ID, TEST_READ_FLAG); in constructor()
46 BluetoothMapContentObserver.Msg msg = in hashCode_returnsExpectedResult()
47 new BluetoothMapContentObserver.Msg(TEST_ID, TEST_FOLDER_ID, TEST_READ_FLAG); in hashCode_returnsExpectedResult()
55 BluetoothMapContentObserver.Msg msg = in equals_withSameInstance()
56 new BluetoothMapContentObserver.Msg(TEST_ID, TEST_FOLDER_ID, TEST_READ_FLAG); in equals_withSameInstance()
63 BluetoothMapContentObserver.Msg msg = in equals_withNull()
64 new BluetoothMapContentObserver.Msg(TEST_ID, TEST_FOLDER_ID, TEST_READ_FLAG); in equals_withNull()
71 BluetoothMapContentObserver.Msg msg = in equals_withDifferentClass()
72 new BluetoothMapContentObserver.Msg(TEST_ID, TEST_FOLDER_ID, TEST_READ_FLAG); in equals_withDifferentClass()
[all …]
DBluetoothMapContentObserverTest.java316 Map<Long, BluetoothMapContentObserver.Msg> map = Map.of(); in testSetMsgListSms()
325 Map<Long, BluetoothMapContentObserver.Msg> map = Map.of(); in testSetMsgListMsg()
334 Map<Long, BluetoothMapContentObserver.Msg> map = Map.of(); in testSetMsgListMms()
381 Map<Long, BluetoothMapContentObserver.Msg> map = new HashMap<>(); in testSetMessageStatusRead_withTypeSmsGsm()
382 BluetoothMapContentObserver.Msg msg = createSimpleMsg(); in testSetMessageStatusRead_withTypeSmsGsm()
399 Map<Long, BluetoothMapContentObserver.Msg> map = new HashMap<>(); in testSetMessageStatusRead_withTypeMms()
400 BluetoothMapContentObserver.Msg msg = createSimpleMsg(); in testSetMessageStatusRead_withTypeMms()
417 Map<Long, BluetoothMapContentObserver.Msg> map = new HashMap<>(); in testSetMessageStatusRead_withTypeEmail()
418 BluetoothMapContentObserver.Msg msg = createSimpleMsg(); in testSetMessageStatusRead_withTypeEmail()
433 Map<Long, BluetoothMapContentObserver.Msg> map = new HashMap<>(); in testDeleteMessageMms_withNonDeletedThreadId()
[all …]
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapMasInstance.java34 import com.android.bluetooth.map.BluetoothMapContentObserver.Msg;
99 private Map<Long, Msg> mMsgListSms = null;
100 private Map<Long, Msg> mMsgListMms = null;
101 private Map<Long, Msg> mMsgListMsg = null;
196 /* package */ Map<Long, Msg> getMsgListSms() { in getMsgListSms()
200 /* package */ void setMsgListSms(Map<Long, Msg> msgListSms) { in setMsgListSms()
204 /* package */ Map<Long, Msg> getMsgListMms() { in getMsgListMms()
208 /* package */ void setMsgListMms(Map<Long, Msg> msgListMms) { in setMsgListMms()
212 /* package */ Map<Long, Msg> getMsgListMsg() { in getMsgListMsg()
216 /* package */ void setMsgListMsg(Map<Long, Msg> msgListMsg) { in setMsgListMsg()
DBluetoothMapContentObserver.java301 setMsgListSms(new HashMap<Long, Msg>(), false); in BluetoothMapContentObserver()
306 setMsgListMms(new HashMap<Long, Msg>(), false); in BluetoothMapContentObserver()
313 setMsgListMsg(new HashMap<Long, Msg>(), false); in BluetoothMapContentObserver()
367 Map<Long, Msg> getMsgListSms() { in getMsgListSms()
372 void setMsgListSms(Map<Long, Msg> msgListSms, boolean changesDetected) { in setMsgListSms()
381 Map<Long, Msg> getMsgListMms() { in getMsgListMms()
386 void setMsgListMms(Map<Long, Msg> msgListMms, boolean changesDetected) { in setMsgListMms()
395 Map<Long, Msg> getMsgListMsg() { in getMsgListMsg()
400 void setMsgListMsg(Map<Long, Msg> msgListMsg, boolean changesDetected) { in setMsgListMsg()
921 static class Msg { class in BluetoothMapContentObserver
[all …]