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 | 100 import com.android.server.telecom.ui.IncomingCallNotifier; 206 @Mock IncomingCallNotifier mIncomingCallNotifier; 470 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 | 28 import com.android.server.telecom.ui.IncomingCallNotifier; 113 private final IncomingCallNotifier mIncomingCallNotifier; 202 IncomingCallNotifier incomingCallNotifier, in TelecomSystem() 314 incomingCallNotifier.setCallsManagerProxy(new IncomingCallNotifier.CallsManagerProxy() { in TelecomSystem()
|
D | CallsManager.java | 115 import com.android.server.telecom.ui.IncomingCallNotifier; 352 private IncomingCallNotifier mIncomingCallNotifier; 591 public void setIncomingCallNotifier(IncomingCallNotifier incomingCallNotifier) { in setIncomingCallNotifier() 3389 IncomingCallNotifier getIncomingCallNotifier() {
|
/packages/services/Telecomm/src/com/android/server/telecom/components/ |
D | TelecomService.java | 59 import com.android.server.telecom.ui.IncomingCallNotifier; 176 new IncomingCallNotifier(context), in initializeTelecomSystem()
|