Home
last modified time | relevance | path

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

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallerInfoLookupHelperTest.java28 import com.android.internal.telephony.CallerInfoAsyncQuery;
80 any(CallerInfoAsyncQuery.OnQueryCompleteListener.class), any())) in setUp()
81 .thenReturn(mock(CallerInfoAsyncQuery.class)); in setUp()
117 ArgumentCaptor<CallerInfoAsyncQuery.OnQueryCompleteListener> queryListenerCaptor = in testSimpleLookup()
118 ArgumentCaptor.forClass(CallerInfoAsyncQuery.OnQueryCompleteListener.class); in testSimpleLookup()
154 ArgumentCaptor<CallerInfoAsyncQuery.OnQueryCompleteListener> queryListenerCaptor = in testLookupWithTwoListeners()
155 ArgumentCaptor.forClass(CallerInfoAsyncQuery.OnQueryCompleteListener.class); in testLookupWithTwoListeners()
192 ArgumentCaptor<CallerInfoAsyncQuery.OnQueryCompleteListener> queryListenerCaptor = in testListenerAddedAfterCallerInfoBeforePhoto()
193 ArgumentCaptor.forClass(CallerInfoAsyncQuery.OnQueryCompleteListener.class); in testListenerAddedAfterCallerInfoBeforePhoto()
DCallerInfoAsyncQueryFactoryFixture.java20 import com.android.internal.telephony.CallerInfoAsyncQuery;
42 CallerInfoAsyncQuery.OnQueryCompleteListener mListener;
54 public CallerInfoAsyncQuery startQuery(int token, Context context, String number,
55 CallerInfoAsyncQuery.OnQueryCompleteListener listener, Object cookie) {
61 return Mockito.mock(CallerInfoAsyncQuery.class);
/packages/services/Telecomm/src/com/android/server/telecom/components/
DTelecomService.java29 import com.android.internal.telephony.CallerInfoAsyncQuery;
96 public CallerInfoAsyncQuery startQuery(int token, Context context, in initializeTelecomSystem()
98 CallerInfoAsyncQuery.OnQueryCompleteListener listener, in initializeTelecomSystem()
103 return CallerInfoAsyncQuery.startQuery( in initializeTelecomSystem()
/packages/services/Telecomm/src/com/android/server/telecom/
DCallerInfoAsyncQueryFactory.java18 import com.android.internal.telephony.CallerInfoAsyncQuery;
23 CallerInfoAsyncQuery startQuery(int token, Context context, String number, in startQuery()
24 CallerInfoAsyncQuery.OnQueryCompleteListener listener, Object cookie); in startQuery()
DCallerInfoLookupHelper.java33 import com.android.internal.telephony.CallerInfoAsyncQuery;
125 CallerInfoAsyncQuery query = mCallerInfoAsyncQueryFactory.startQuery( in startLookup()
140 private CallerInfoAsyncQuery.OnQueryCompleteListener makeCallerInfoQueryListener( in makeCallerInfoQueryListener()
/packages/services/Telephony/src/com/android/phone/
DPhoneUtils.java56 import com.android.internal.telephony.CallerInfoAsyncQuery;
1281 public CallerInfoAsyncQuery asyncQuery;
1288 CallerInfoAsyncQuery.OnQueryCompleteListener listener, Object cookie) { in startGetCallerInfo()
1306 CallerInfoAsyncQuery.OnQueryCompleteListener listener, Object cookie) { in startGetCallerInfo()
1315 CallerInfoAsyncQuery.OnQueryCompleteListener listener, Object cookie, in startGetCallerInfo()
1368 cit.asyncQuery = CallerInfoAsyncQuery.startQuery(QUERY_TOKEN, context, in startGetCallerInfo()
1441 cit.asyncQuery = CallerInfoAsyncQuery.startQuery(QUERY_TOKEN, context, in startGetCallerInfo()
1517 cit.asyncQuery = CallerInfoAsyncQuery.startQuery(QUERY_TOKEN, context, in startGetCallerInfo()
1567 static CallerInfoAsyncQuery.OnQueryCompleteListener sCallerInfoQueryListener =
1568 new CallerInfoAsyncQuery.OnQueryCompleteListener () {
/packages/apps/Dialer/java/com/android/incallui/
DCallerInfoUtils.java61 CallerInfoAsyncQuery.OnQueryCompleteListener listener) { in getCallerInfoForCall()
74 CallerInfoAsyncQuery.startQuery(QUERY_TOKEN, context, info, listener, cookie); in getCallerInfoForCall()
DCallerInfoAsyncQuery.java55 public class CallerInfoAsyncQuery { class
85 private CallerInfoAsyncQuery() {} in CallerInfoAsyncQuery() method in CallerInfoAsyncQuery
DContactInfoCache.java57 import com.android.incallui.CallerInfoAsyncQuery.OnQueryCompleteListener;