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.java57 private IncomingCallNotifier mIncomingCallNotifier; field in IncomingCallNotifierTest
71 mIncomingCallNotifier = new IncomingCallNotifier(mContext); in setUp()
72 mIncomingCallNotifier.setCallsManagerProxy(mCallsManagerProxy); in setUp()
102 mIncomingCallNotifier.onCallAdded(mAudioCall); in testSingleCall()
116 mIncomingCallNotifier.onCallAdded(mRingingCall); in testIncomingDuringOngoingCall()
133 mIncomingCallNotifier.onCallAdded(mAudioCall); in testIncomingDuringOngoingCall2()
134 mIncomingCallNotifier.onCallAdded(mRingingCall); in testIncomingDuringOngoingCall2()
151 mIncomingCallNotifier.onCallAdded(mAudioCall); in testCallRemoved()
152 mIncomingCallNotifier.onCallAdded(mRingingCall); in testCallRemoved()
157 mIncomingCallNotifier.onCallRemoved(mRingingCall); in testCallRemoved()
[all …]
DTelecomSystemTest.java211 @Mock IncomingCallNotifier mIncomingCallNotifier; field in TelecomSystemTest
512 mIncomingCallNotifier = mock(IncomingCallNotifier.class); in setupTelecomSystem()
535 mIncomingCallNotifier, in setupTelecomSystem()
/packages/services/Telecomm/src/com/android/server/telecom/
DTelecomSystem.java131 private final IncomingCallNotifier mIncomingCallNotifier; field in TelecomSystem
432 mIncomingCallNotifier = incomingCallNotifier; in TelecomSystem()
453 mCallsManager.setIncomingCallNotifier(mIncomingCallNotifier); in TelecomSystem()
DCallsManager.java467 private IncomingCallNotifier mIncomingCallNotifier; field in CallsManager
782 if (mIncomingCallNotifier != null) { in setIncomingCallNotifier()
783 mListeners.remove(mIncomingCallNotifier); in setIncomingCallNotifier()
785 mIncomingCallNotifier = incomingCallNotifier; in setIncomingCallNotifier()
786 mListeners.add(mIncomingCallNotifier); in setIncomingCallNotifier()
4587 return mIncomingCallNotifier;
/packages/services/Telephony/src/com/android/services/telephony/
DTelecomAccountRegistry.java135 private final PstnIncomingCallNotifier mIncomingCallNotifier; field in TelecomAccountRegistry.AccountEntry
173 mIncomingCallNotifier = new PstnIncomingCallNotifier((Phone) mPhone); in AccountEntry()
240 mIncomingCallNotifier.teardown(); in teardown()