Home
last modified time | relevance | path

Searched refs:storedTile (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/people/
H A DPeopleSpaceUtils.java404 PeopleSpaceTile storedTile = widgetIdToTile.get(appWidgetId); in getDataFromContacts() local
405 if (storedTile == null || storedTile.getContactUri() == null) { in getDataFromContacts()
406 if (DEBUG) Log.d(TAG, "No contact uri for: " + storedTile); in getDataFromContacts()
407 updateTileContactFields(peopleSpaceWidgetManager, context, storedTile, in getDataFromContacts()
413 storedTile, in getDataFromContacts()
425 boolean outdatedBirthdayStatus = hasBirthdayStatus(storedTile, context) in updateTileContactFields()
427 boolean addBirthdayStatus = !hasBirthdayStatus(storedTile, context) in updateTileContactFields()
434 storedTile.toBuilder() in updateTileContactFields()
447 List<String> lookupKeysWithBirthdaysToday, PeopleSpaceTile storedTile, in updateTileWithBirthdayAndUpdateAffinity() argument
451 cursor = context.getContentResolver().query(storedTile.getContactUri(), in updateTileWithBirthdayAndUpdateAffinity()
[all …]
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/people/widget/
H A DPeopleSpaceWidgetManager.java408 PeopleSpaceTile.Builder storedTile = new PeopleSpaceTile.Builder(channel, in getTileFromPersistentStorage() local
410 if (storedTile == null) { in getTileFromPersistentStorage()
411 return storedTile.build(); in getTileFromPersistentStorage()
417 && storedTile.build().getContactUri() == null) { in getTileFromPersistentStorage()
419 storedTile.setContactUri(Uri.parse(contactUri)); in getTileFromPersistentStorage()
423 return getTileWithCurrentState(storedTile.build(), ACTION_BOOT_COMPLETED); in getTileFromPersistentStorage()
698 PeopleSpaceTile storedTile = getTileForExistingWidget(appWidgetId); in updateStorageAndViewWithConversationData() local
699 if (storedTile == null) { in updateStorageAndViewWithConversationData()
703 PeopleSpaceTile.Builder updatedTile = storedTile.toBuilder(); in updateStorageAndViewWithConversationData()