Searched refs:callLogInfo (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Contacts/tests/src/com/android/contacts/calllog/
H A DCallLogAdapterTest.java112 assertEquals(TEST_NAME, request.callLogInfo.name);
113 assertEquals(1, request.callLogInfo.type);
114 assertEquals(TEST_NUMBER_LABEL, request.callLogInfo.label);
199 public final ContactInfo callLogInfo; field in class:CallLogAdapterTest.TestCallLogAdapter.Request
202 public Request(String number, String countryIso, ContactInfo callLogInfo, argument
206 this.callLogInfo = callLogInfo;
219 void enqueueRequest(String number, String countryIso, ContactInfo callLogInfo, argument
221 requests.add(new Request(number, countryIso, callLogInfo, immediate));
/packages/apps/Contacts/src/com/android/contacts/calllog/
H A DCallLogAdapter.java117 public final ContactInfo callLogInfo; field in class:CallLogAdapter.ContactInfoRequest
119 public ContactInfoRequest(String number, String countryIso, ContactInfo callLogInfo) { argument
122 this.callLogInfo = callLogInfo;
135 if (!Objects.equal(callLogInfo, other.callLogInfo)) return false;
144 result = prime * result + ((callLogInfo == null) ? 0 : callLogInfo.hashCode());
317 void enqueueRequest(String number, String countryIso, ContactInfo callLogInfo, argument
319 ContactInfoRequest request = new ContactInfoRequest(number, countryIso, callLogInfo);
343 queryContactInfo(String number, String countryIso, ContactInfo callLogInfo) argument
587 callLogInfoMatches(ContactInfo callLogInfo, ContactInfo info) argument
596 updateCallLogContactInfoCache(String number, String countryIso, ContactInfo updatedInfo, ContactInfo callLogInfo) argument
[all...]

Completed in 554 milliseconds