Home
last modified time | relevance | path

Searched refs:IncomingCallNotifier (Results 1 – 6 of 6) sorted by relevance

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DIncomingCallNotifierTest.java29 import com.android.server.telecom.ui.IncomingCallNotifier;
52 @Mock private IncomingCallNotifier.CallsManagerProxy mCallsManagerProxy;
56 private IncomingCallNotifier mIncomingCallNotifier;
70 mIncomingCallNotifier = new IncomingCallNotifier(mContext); in setUp()
98 verify(mNotificationManager, never()).notify(eq(IncomingCallNotifier.NOTIFICATION_TAG), in testSingleCall()
99 eq(IncomingCallNotifier.NOTIFICATION_INCOMING_CALL), any()); in testSingleCall()
110 verify(mNotificationManager, never()).notify(eq(IncomingCallNotifier.NOTIFICATION_TAG), in testIncomingDuringOngoingCall()
111 eq(IncomingCallNotifier.NOTIFICATION_INCOMING_CALL), any()); in testIncomingDuringOngoingCall()
126 verify(mNotificationManager, never()).notify(eq(IncomingCallNotifier.NOTIFICATION_TAG), in testIncomingDuringOngoingCall2()
127 eq(IncomingCallNotifier.NOTIFICATION_INCOMING_CALL), any());; in testIncomingDuringOngoingCall2()
[all …]
DTelecomSystemTest.java99 import com.android.server.telecom.ui.IncomingCallNotifier;
204 @Mock IncomingCallNotifier mIncomingCallNotifier;
469 mIncomingCallNotifier = mock(IncomingCallNotifier.class); in setupTelecomSystem()
/packages/services/Telecomm/src/com/android/server/telecom/ui/
DIncomingCallNotifier.java52 public class IncomingCallNotifier extends CallsManagerListenerBase { class
55 IncomingCallNotifier make(Context context, CallsManagerProxy mCallsManagerProxy); in make()
71 public static final String NOTIFICATION_TAG = IncomingCallNotifier.class.getSimpleName();
92 public IncomingCallNotifier(Context context) { in IncomingCallNotifier() method in IncomingCallNotifier
/packages/services/Telecomm/src/com/android/server/telecom/
DTelecomSystem.java27 import com.android.server.telecom.ui.IncomingCallNotifier;
117 private final IncomingCallNotifier mIncomingCallNotifier;
203 IncomingCallNotifier incomingCallNotifier, in TelecomSystem()
353 incomingCallNotifier.setCallsManagerProxy(new IncomingCallNotifier.CallsManagerProxy() { in TelecomSystem()
DCallsManager.java121 import com.android.server.telecom.ui.IncomingCallNotifier;
360 private IncomingCallNotifier mIncomingCallNotifier;
603 public void setIncomingCallNotifier(IncomingCallNotifier incomingCallNotifier) { in setIncomingCallNotifier()
3618 IncomingCallNotifier getIncomingCallNotifier() {
/packages/services/Telecomm/src/com/android/server/telecom/components/
DTelecomService.java60 import com.android.server.telecom.ui.IncomingCallNotifier;
176 new IncomingCallNotifier(context),