Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/people/data/
H A DConversationStoreTest.java134 mConversationStore.addOrUpdate(in); in testGetConversationByLocusId()
147 mConversationStore.addOrUpdate(in); in testGetConversationByContactUri()
160 mConversationStore.addOrUpdate(in); in testGetConversationByPhoneNumber()
173 mConversationStore.addOrUpdate(in); in testGetConversationByNotificationChannelId()
193 mConversationStore.addOrUpdate(in1); in testDataPersistenceAndRestoration()
194 mConversationStore.addOrUpdate(in2); in testDataPersistenceAndRestoration()
195 mConversationStore.addOrUpdate(in3); in testDataPersistenceAndRestoration()
228 mConversationStore.addOrUpdate(in1); in testDelayedDiskWrites()
234 mConversationStore.addOrUpdate(in2); in testDelayedDiskWrites()
243 mConversationStore.addOrUpdate(in2); in testDelayedDiskWrites()
[all …]
H A DUsageStatsQueryHelperTest.java94 mPackageData.mConversationStore.mConversationInfo = new ConversationInfo.Builder() in setUp()
138 mPackageData, mPackageData.mConversationStore.mConversationInfo, events.get(0)); in testInAppConversationSwitch()
154 mPackageData, mPackageData.mConversationStore.mConversationInfo, events.get(0)); in testInAppConversationExplicitlyEnd()
170 mPackageData, mPackageData.mConversationStore.mConversationInfo, events.get(0)); in testInAppConversationImplicitlyEnd()
349 private final TestConversationStore mConversationStore; field in UsageStatsQueryHelperTest.TestPackageData
358 mConversationStore = new TestConversationStore(rootDir, scheduledExecutorService); in TestPackageData()
365 return mConversationStore; in getConversationStore()
/aosp14/frameworks/base/services/people/java/com/android/server/people/data/
H A DPackageData.java49 private final ConversationStore mConversationStore; field in PackageData
71 mConversationStore = new ConversationStore(mPackageDataDir, scheduledExecutorService); in PackageData()
104 mConversationStore.loadConversationsFromDisk(); in loadFromDisk()
110 mConversationStore.saveConversationsToDisk(); in saveToDisk()
125 mConversationStore.forAllConversations(consumer); in forAllConversations()
146 ConversationInfo conversationInfo = mConversationStore.getConversation(shortcutId); in getEventHistory()
205 return mConversationStore; in getConversationStore()
241 key -> mConversationStore.getConversation(key) != null); in pruneOrphanEvents()
246 key -> mConversationStore.getConversationByPhoneNumber(key) != null); in pruneOrphanEvents()
250 key -> mConversationStore.getConversationByPhoneNumber(key) != null); in pruneOrphanEvents()
[all …]
H A DDataManager.java989 conversationSelector.mConversationStore = in onChange()
1003 updateConversationStoreThenNotifyListeners(conversationSelector.mConversationStore, in onChange()
1010 private ConversationStore mConversationStore = null; field in DataManager.ContactsContentObserver.ConversationSelector