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.java50 private IncomingCallNotifier mIncomingCallNotifier; field in IncomingCallNotifierTest
62 mIncomingCallNotifier = new IncomingCallNotifier(mContext); in setUp()
63 mIncomingCallNotifier.setCallsManagerProxy(mCallsManagerProxy); in setUp()
82 mIncomingCallNotifier.onCallAdded(mAudioCall); in testSingleCall()
93 mIncomingCallNotifier.onCallAdded(mRingingCall); in testIncomingDuringOngoingCall()
107 mIncomingCallNotifier.onCallAdded(mAudioCall); in testIncomingDuringOngoingCall2()
108 mIncomingCallNotifier.onCallAdded(mRingingCall); in testIncomingDuringOngoingCall2()
122 mIncomingCallNotifier.onCallAdded(mAudioCall); in testCallRemoved()
123 mIncomingCallNotifier.onCallAdded(mRingingCall); in testCallRemoved()
126 mIncomingCallNotifier.onCallRemoved(mRingingCall); in testCallRemoved()
[all …]
DTelecomSystemTest.java204 @Mock IncomingCallNotifier mIncomingCallNotifier; field in TelecomSystemTest
414 mIncomingCallNotifier = mock(IncomingCallNotifier.class); in setupTelecomSystem()
449 mIncomingCallNotifier, in setupTelecomSystem()
/packages/services/Telecomm/src/com/android/server/telecom/
DTelecomSystem.java104 private final IncomingCallNotifier mIncomingCallNotifier; field in TelecomSystem
261 mIncomingCallNotifier = incomingCallNotifier; in TelecomSystem()
278 mCallsManager.setIncomingCallNotifier(mIncomingCallNotifier); in TelecomSystem()
DCallsManager.java255 private IncomingCallNotifier mIncomingCallNotifier; field in CallsManager
396 if (mIncomingCallNotifier != null) { in setIncomingCallNotifier()
397 mListeners.remove(mIncomingCallNotifier); in setIncomingCallNotifier()
399 mIncomingCallNotifier = incomingCallNotifier; in setIncomingCallNotifier()
400 mListeners.add(mIncomingCallNotifier); in setIncomingCallNotifier()
2104 return mIncomingCallNotifier; in getIncomingCallNotifier()
/packages/services/Telephony/src/com/android/services/telephony/
DTelecomAccountRegistry.java74 private final PstnIncomingCallNotifier mIncomingCallNotifier; field in TelecomAccountRegistry.AccountEntry
93 mIncomingCallNotifier = new PstnIncomingCallNotifier((Phone) mPhone); in AccountEntry()
99 mIncomingCallNotifier.teardown(); in teardown()