Searched refs:IncomingCallNotifier (Results 1 – 6 of 6) sorted by relevance
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | IncomingCallNotifierTest.java | 29 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 …]
|
D | TelecomSystemTest.java | 99 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/ |
D | IncomingCallNotifier.java | 52 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/ |
D | TelecomSystem.java | 27 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()
|
D | CallsManager.java | 121 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/ |
D | TelecomService.java | 60 import com.android.server.telecom.ui.IncomingCallNotifier; 176 new IncomingCallNotifier(context),
|