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.java206 @Mock IncomingCallNotifier mIncomingCallNotifier; field in TelecomSystemTest
470 mIncomingCallNotifier = mock(IncomingCallNotifier.class); in setupTelecomSystem()
489 mIncomingCallNotifier, in setupTelecomSystem()
/packages/services/Telecomm/src/com/android/server/telecom/
DTelecomSystem.java113 private final IncomingCallNotifier mIncomingCallNotifier; field in TelecomSystem
313 mIncomingCallNotifier = incomingCallNotifier; in TelecomSystem()
334 mCallsManager.setIncomingCallNotifier(mIncomingCallNotifier); in TelecomSystem()
DCallsManager.java352 private IncomingCallNotifier mIncomingCallNotifier; field in CallsManager
592 if (mIncomingCallNotifier != null) { in setIncomingCallNotifier()
593 mListeners.remove(mIncomingCallNotifier); in setIncomingCallNotifier()
595 mIncomingCallNotifier = incomingCallNotifier; in setIncomingCallNotifier()
596 mListeners.add(mIncomingCallNotifier); in setIncomingCallNotifier()
3390 return mIncomingCallNotifier;
/packages/services/Telephony/src/com/android/services/telephony/
DTelecomAccountRegistry.java112 private final PstnIncomingCallNotifier mIncomingCallNotifier; field in TelecomAccountRegistry.AccountEntry
142 mIncomingCallNotifier = new PstnIncomingCallNotifier((Phone) mPhone); in AccountEntry()
193 mIncomingCallNotifier.teardown(); in teardown()