Home
last modified time | relevance | path

Searched refs:mIncomingCallNotifier (Results 1 – 5 of 5) sorted by relevance

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DIncomingCallNotifierTest.java56 private IncomingCallNotifier mIncomingCallNotifier; field in IncomingCallNotifierTest
70 mIncomingCallNotifier = new IncomingCallNotifier(mContext); in setUp()
71 mIncomingCallNotifier.setCallsManagerProxy(mCallsManagerProxy); in setUp()
97 mIncomingCallNotifier.onCallAdded(mAudioCall); in testSingleCall()
109 mIncomingCallNotifier.onCallAdded(mRingingCall); in testIncomingDuringOngoingCall()
124 mIncomingCallNotifier.onCallAdded(mAudioCall); in testIncomingDuringOngoingCall2()
125 mIncomingCallNotifier.onCallAdded(mRingingCall); in testIncomingDuringOngoingCall2()
140 mIncomingCallNotifier.onCallAdded(mAudioCall); in testCallRemoved()
141 mIncomingCallNotifier.onCallAdded(mRingingCall); in testCallRemoved()
144 mIncomingCallNotifier.onCallRemoved(mRingingCall); in testCallRemoved()
[all …]
DTelecomSystemTest.java204 @Mock IncomingCallNotifier mIncomingCallNotifier; field in TelecomSystemTest
469 mIncomingCallNotifier = mock(IncomingCallNotifier.class); in setupTelecomSystem()
488 mIncomingCallNotifier, in setupTelecomSystem()
/packages/services/Telecomm/src/com/android/server/telecom/
DTelecomSystem.java117 private final IncomingCallNotifier mIncomingCallNotifier; field in TelecomSystem
352 mIncomingCallNotifier = incomingCallNotifier; in TelecomSystem()
373 mCallsManager.setIncomingCallNotifier(mIncomingCallNotifier); in TelecomSystem()
DCallsManager.java360 private IncomingCallNotifier mIncomingCallNotifier; field in CallsManager
604 if (mIncomingCallNotifier != null) { in setIncomingCallNotifier()
605 mListeners.remove(mIncomingCallNotifier); in setIncomingCallNotifier()
607 mIncomingCallNotifier = incomingCallNotifier; in setIncomingCallNotifier()
608 mListeners.add(mIncomingCallNotifier); in setIncomingCallNotifier()
3619 return mIncomingCallNotifier;
/packages/services/Telephony/src/com/android/services/telephony/
DTelecomAccountRegistry.java122 private final PstnIncomingCallNotifier mIncomingCallNotifier; field in TelecomAccountRegistry.AccountEntry
153 mIncomingCallNotifier = new PstnIncomingCallNotifier((Phone) mPhone); in AccountEntry()
205 mIncomingCallNotifier.teardown(); in teardown()