Searched defs:updatedInfo (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/calllog/
H A DCallLogAdapter.java597 ContactInfo updatedInfo, ContactInfo callLogInfo) {
602 if (!TextUtils.equals(updatedInfo.name, callLogInfo.name)) {
603 values.put(Calls.CACHED_NAME, updatedInfo.name);
607 if (updatedInfo.type != callLogInfo.type) {
608 values.put(Calls.CACHED_NUMBER_TYPE, updatedInfo.type);
612 if (!TextUtils.equals(updatedInfo.label, callLogInfo.label)) {
613 values.put(Calls.CACHED_NUMBER_LABEL, updatedInfo.label);
616 if (!UriUtils.areEqual(updatedInfo.lookupUri, callLogInfo.lookupUri)) {
617 values.put(Calls.CACHED_LOOKUP_URI, UriUtils.uriToString(updatedInfo.lookupUri));
620 if (!TextUtils.equals(updatedInfo
596 updateCallLogContactInfoCache(String number, String countryIso, ContactInfo updatedInfo, ContactInfo callLogInfo) argument
[all...]

Completed in 158 milliseconds