Home
last modified time | relevance | path

Searched refs:mForegroundCall (Results 1 – 2 of 2) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/
DCallAudioManager.java61 private Call mForegroundCall; field in CallAudioManager
249 if (call != mForegroundCall) { in onSessionModifyRequestReceived()
282 if (call != mForegroundCall) { in onIsVoipAudioModeChanged()
292 if (call == mForegroundCall && shouldRingback) { in onRingbackRequested()
353 return mForegroundCall; in getPossiblyHeldForegroundCall()
357 if (mForegroundCall != null && mForegroundCall.getState() != CallState.ON_HOLD) { in getForegroundCall()
358 return mForegroundCall; in getForegroundCall()
455 return mRinger.startRinging(mForegroundCall, in startRinging()
526 pw.println(mForegroundCall); in dump()
683 Call oldForegroundCall = mForegroundCall; in updateForegroundCall()
[all …]
/packages/services/Telephony/tests/src/com/android/phone/
DNumberVerificationManagerTest.java52 @Mock private Call mForegroundCall; field in NumberVerificationManagerTest
62 when(mPhone1.getForegroundCall()).thenReturn(mForegroundCall); in setUp()
66 when(mPhone2.getForegroundCall()).thenReturn(mForegroundCall); in setUp()
70 when(mForegroundCall.getState()).thenReturn(Call.State.IDLE); in setUp()