Home
last modified time | relevance | path

Searched refs:CallerInfoAsyncQuery (Results 1 – 8 of 8) sorted by relevance

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallerInfoAsyncQueryFactoryFixture.java20 import android.telecom.CallerInfoAsyncQuery;
44 CallerInfoAsyncQuery.OnQueryCompleteListener mListener;
56 public CallerInfoAsyncQuery startQuery(int token, Context context, String number,
57 CallerInfoAsyncQuery.OnQueryCompleteListener listener, Object cookie) {
66 return Mockito.mock(CallerInfoAsyncQuery.class);
DCallerInfoLookupHelperTest.java36 import android.telecom.CallerInfoAsyncQuery;
87 any(CallerInfoAsyncQuery.OnQueryCompleteListener.class), any())) in setUp()
88 .thenReturn(mock(CallerInfoAsyncQuery.class)); in setUp()
134 ArgumentCaptor<CallerInfoAsyncQuery.OnQueryCompleteListener> queryListenerCaptor = in testSimpleLookup()
135 ArgumentCaptor.forClass(CallerInfoAsyncQuery.OnQueryCompleteListener.class); in testSimpleLookup()
173 ArgumentCaptor<CallerInfoAsyncQuery.OnQueryCompleteListener> queryListenerCaptor = in testLookupWithTwoListeners()
174 ArgumentCaptor.forClass(CallerInfoAsyncQuery.OnQueryCompleteListener.class); in testLookupWithTwoListeners()
213 ArgumentCaptor<CallerInfoAsyncQuery.OnQueryCompleteListener> queryListenerCaptor = in testListenerAddedAfterCallerInfoBeforePhoto()
214 ArgumentCaptor.forClass(CallerInfoAsyncQuery.OnQueryCompleteListener.class); in testListenerAddedAfterCallerInfoBeforePhoto()
/packages/services/Telecomm/src/com/android/server/telecom/
DCallerInfoAsyncQueryFactory.java18 import android.telecom.CallerInfoAsyncQuery;
23 CallerInfoAsyncQuery startQuery(int token, Context context, String number, in startQuery()
24 CallerInfoAsyncQuery.OnQueryCompleteListener listener, Object cookie); in startQuery()
DCallerInfoLookupHelper.java32 import android.telecom.CallerInfoAsyncQuery;
166 CallerInfoAsyncQuery query = mCallerInfoAsyncQueryFactory.startQuery( in startLookup()
181 private CallerInfoAsyncQuery.OnQueryCompleteListener makeCallerInfoQueryListener( in makeCallerInfoQueryListener()
/packages/services/Telecomm/src/com/android/server/telecom/components/
DTelecomService.java33 import android.telecom.CallerInfoAsyncQuery;
131 public CallerInfoAsyncQuery startQuery(
135 CallerInfoAsyncQuery.OnQueryCompleteListener listener,
140 return CallerInfoAsyncQuery.startQuery(
/packages/apps/Dialer/java/com/android/incallui/
DCallerInfoUtils.java55 CallerInfoAsyncQuery.OnQueryCompleteListener listener) { in getCallerInfoForCall()
68 CallerInfoAsyncQuery.startQuery(QUERY_TOKEN, context, info, listener, cookie); in getCallerInfoForCall()
DCallerInfoAsyncQuery.java52 public class CallerInfoAsyncQuery { class
82 private CallerInfoAsyncQuery() {} in CallerInfoAsyncQuery() method in CallerInfoAsyncQuery
DContactInfoCache.java57 import com.android.incallui.CallerInfoAsyncQuery.OnQueryCompleteListener;