Home
last modified time | relevance | path

Searched refs:updatedInfo (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
DContactInfoHelper.java232 final ContactInfo updatedInfo; in lookupNumber() local
236 updatedInfo = null; in lookupNumber()
241 updatedInfo = createEmptyContactInfoForNumber(number, countryIso); in lookupNumber()
243 updatedInfo = info; in lookupNumber()
246 return updatedInfo; in lookupNumber()
471 String number, String countryIso, ContactInfo updatedInfo, ContactInfo callLogInfo) { in updateCallLogContactInfo() argument
480 if (!TextUtils.equals(updatedInfo.name, callLogInfo.name)) { in updateCallLogContactInfo()
481 values.put(Calls.CACHED_NAME, updatedInfo.name); in updateCallLogContactInfo()
485 if (updatedInfo.type != callLogInfo.type) { in updateCallLogContactInfo()
486 values.put(Calls.CACHED_NUMBER_TYPE, updatedInfo.type); in updateCallLogContactInfo()
[all …]
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/audio/
DZoneConfigSelectionController.java120 CarAudioZoneConfigInfo updatedInfo = getUpdatedConfigInfo(info); in ZoneConfigSelectionController()
122 if (!updatedInfo.isActive()) { in ZoneConfigSelectionController()
125 if (updatedInfo.isSelected()) { in ZoneConfigSelectionController()
197 CarAudioZoneConfigInfo updatedInfo = getUpdatedConfigInfo(mZoneConfigInfoSelected); in handleZoneConfigurationsSelection() local
199 if (!updatedInfo.isActive()) { in handleZoneConfigurationsSelection()
200 showToast(updatedInfo.getName() + ": not active"); in handleZoneConfigurationsSelection()
203 if (updatedInfo.isSelected()) { in handleZoneConfigurationsSelection()
204 showToast(updatedInfo.getName() + ": already selected"); in handleZoneConfigurationsSelection()
/packages/apps/Settings/src/com/android/settings/notification/history/
DNotificationStation.java101 public void updateFrom(HistoricalNotificationInfo updatedInfo) { in updateFrom() argument
102 this.channel = updatedInfo.channel; in updateFrom()
103 this.icon = updatedInfo.icon; in updateFrom()
104 this.title = updatedInfo.title; in updateFrom()
105 this.text = updatedInfo.text; in updateFrom()
106 this.priority = updatedInfo.priority; in updateFrom()
107 this.timestamp = updatedInfo.timestamp; in updateFrom()
108 this.active = updatedInfo.active; in updateFrom()
109 this.alerted = updatedInfo.alerted; in updateFrom()
110 this.visuallyInterruptive = updatedInfo.visuallyInterruptive; in updateFrom()
[all …]
/packages/apps/Settings/src/com/android/settings/
DSettingsInitialize.java144 final ShortcutInfo updatedInfo = new ShortcutInfo.Builder(context, info.getId()) in refreshExistingShortcuts() local
147 updates.add(updatedInfo); in refreshExistingShortcuts()
/packages/services/Car/service/src/com/android/car/audio/
DCarAudioService.java3101 CarAudioZoneConfigInfo updatedInfo = getAudioZoneConfigInfo(zoneConfig);
3103 callback.onAudioZoneConfigSwitched(updatedInfo, isSuccessful);
3106 updatedInfo);
3149 CarAudioZoneConfigInfo updatedInfo = getAudioZoneConfigInfo(zoneConfig);
3151 if (updatedInfo == null) {
3156 if (!updatedInfo.isActive()) {