Searched refs:CallerInfoAsyncQuery (Results 1 – 8 of 8) sorted by relevance
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | CallerInfoAsyncQueryFactoryFixture.java | 20 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);
|
D | CallerInfoLookupHelperTest.java | 36 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/ |
D | CallerInfoAsyncQueryFactory.java | 18 import android.telecom.CallerInfoAsyncQuery; 23 CallerInfoAsyncQuery startQuery(int token, Context context, String number, in startQuery() 24 CallerInfoAsyncQuery.OnQueryCompleteListener listener, Object cookie); in startQuery()
|
D | CallerInfoLookupHelper.java | 32 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/ |
D | TelecomService.java | 33 import android.telecom.CallerInfoAsyncQuery; 131 public CallerInfoAsyncQuery startQuery( 135 CallerInfoAsyncQuery.OnQueryCompleteListener listener, 140 return CallerInfoAsyncQuery.startQuery(
|
/packages/apps/Dialer/java/com/android/incallui/ |
D | CallerInfoUtils.java | 55 CallerInfoAsyncQuery.OnQueryCompleteListener listener) { in getCallerInfoForCall() 68 CallerInfoAsyncQuery.startQuery(QUERY_TOKEN, context, info, listener, cookie); in getCallerInfoForCall()
|
D | CallerInfoAsyncQuery.java | 52 public class CallerInfoAsyncQuery { class 82 private CallerInfoAsyncQuery() {} in CallerInfoAsyncQuery() method in CallerInfoAsyncQuery
|
D | ContactInfoCache.java | 57 import com.android.incallui.CallerInfoAsyncQuery.OnQueryCompleteListener;
|