Home
last modified time | relevance | path

Searched refs:CallInfo (Results 1 – 13 of 13) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/
DMissedCallNotifier.java30 public CallInfo makeCallInfo(CallerInfo callerInfo, PhoneAccountHandle phoneAccountHandle, in makeCallInfo()
32 return new CallInfo(callerInfo, phoneAccountHandle, handle, creationTimeMillis); in makeCallInfo()
36 class CallInfo { class
42 public CallInfo(CallerInfo callerInfo, PhoneAccountHandle phoneAccountHandle, Uri handle, in CallInfo() method in MissedCallNotifier.CallInfo
50 public CallInfo(Call call) { in CallInfo() method in MissedCallNotifier.CallInfo
88 void showMissedCallNotification(CallInfo call); in showMissedCallNotification()
DAnalytics.java165 public static class CallInfo { class in Analytics
217 public static class CallInfoImpl extends CallInfo {
614 public static CallInfo initiateCallAnalytics(String callId, int direction) { in initiateCallAnalytics()
DLogUtils.java245 Analytics.CallInfo callInfo = callRecordEntry.getAnalytics(); in eventRecordAdded()
DCall.java464 private Analytics.CallInfo mAnalytics = new Analytics.CallInfo();
776 public Analytics.CallInfo getAnalytics() { in getAnalytics()
DCallLogManager.java291 new MissedCallNotifier.CallInfo(call)); in logCall()
DCallsManager.java799 new MissedCallNotifier.CallInfo(incomingCall)); in onCallFilteringComplete()
/packages/services/Telecomm/src/com/android/server/telecom/ui/
DDisconnectedCallNotifier.java74 private static class CallInfo { class in DisconnectedCallNotifier
83 public CallInfo(UserHandle userHandle, Uri handle, long endTimeMs, Bitmap callerInfoIcon, in CallInfo() method in DisconnectedCallNotifier.CallInfo
116 private CallInfo mPendingCallNotification;
150 mPendingCallNotification = new CallInfo(userHandle, call.getHandle(), in onCallStateChanged()
156 private void showDisconnectedNotification(@NonNull CallInfo call) { in showDisconnectedNotification()
254 private String getNameForCallNotification(@NonNull CallInfo call) { in getNameForCallNotification()
339 private boolean canRespondViaSms(@NonNull CallInfo call) { in canRespondViaSms()
DMissedCallNotifierImpl.java228 private void sendNotificationThroughDefaultDialer(CallInfo callInfo, UserHandle userHandle) { in sendNotificationThroughDefaultDialer()
260 public void showMissedCallNotification(@NonNull CallInfo callInfo) { in showMissedCallNotification()
274 private void showMissedCallNotification(@NonNull CallInfo callInfo, UserHandle userHandle) { in showMissedCallNotification()
413 private String getNameForMissedCallNotification(@NonNull CallInfo callInfo) { in getNameForMissedCallNotification()
532 private boolean canRespondViaSms(@NonNull CallInfo callInfo) { in canRespondViaSms()
607 CallInfo callInfo = callInfoFactory.makeCallInfo( in reloadFromDatabase()
622 CallInfo callInfo = callInfoFactory.makeCallInfo( in reloadFromDatabase()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DMissedCallNotifierImplTest.java214 MissedCallNotifier.CallInfo fakeCall = makeFakeCallInfo(TEL_CALL_HANDLE, CALLER_NAME, in cancelNotificationTestInternal()
242 MissedCallNotifier.CallInfo fakeCall = makeFakeCallInfo(TEL_CALL_HANDLE, CALLER_NAME, in testNotifyMultipleMissedCalls()
341 MissedCallNotifier.CallInfo fakeCall = makeFakeCallInfo(TEL_CALL_HANDLE, CALLER_NAME, in notifySingleCallTestInternal()
407 MissedCallNotifier.CallInfo fakeCall = in testNoSmsBackAfterMissedSipCall()
453 MissedCallNotifier.CallInfo fakeCallInfo = makeFakeCallInfo(TEL_CALL_HANDLE, in testLoadOneCallFromDb()
522 MissedCallNotifier.CallInfo fakeCallInfo = makeFakeCallInfo(TEL_CALL_HANDLE, in testLoadTwoCallsFromDb()
572 private MissedCallNotifier.CallInfo makeFakeCallInfo(Uri handle, String name, long timestamp, in makeFakeCallInfo()
574 MissedCallNotifier.CallInfo fakeCall = mock(MissedCallNotifier.CallInfo.class); in makeFakeCallInfo()
DVideoProviderProxyTest.java52 @Mock private Analytics.CallInfo mCallInfo;
DTelecomSystemTest.java159 List<CallInfo> missedCallsNotified = new ArrayList<>();
167 public void showMissedCallNotification(CallInfo call) { in showMissedCallNotification()
DCallLogManagerTest.java386 .showMissedCallNotification(any(MissedCallNotifier.CallInfo.class)); in testLogCallDirectionMissed()
DInCallControllerTests.java149 when(mMockCall.getAnalytics()).thenReturn(new Analytics.CallInfo()); in setUp()