Home
last modified time | relevance | path

Searched refs:mCallInfo (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/telephony/
DBluetoothInCallService.java140 public CallInfo mCallInfo = new CallInfo(); field in BluetoothInCallService
220 if (mCallInfo.isNullCall(call)) { in onStateChanged()
242 for (BluetoothCall otherCall : mCallInfo.getBluetoothCalls()) { in onStateChanged()
253 BluetoothCall activeCall = mCallInfo.getActiveCall(); in onStateChanged()
254 if (!mCallInfo.isNullCall(activeCall) in onStateChanged()
271 if (mCallInfo.isNullCall(call)) { in onDetailsChanged()
288 if (mCallInfo.isNullCall(call) || call.isExternalCall()) { in onParentChanged()
310 if (mCallInfo.isNullCall(call) || call.isExternalCall()) { in onChildrenChanged()
369 BluetoothCall call = mCallInfo.getRingingOrSimulatedRingingCall(); in answerCall()
370 if (mCallInfo.isNullCall(call)) { in answerCall()
[all …]
/packages/services/Telecomm/src/com/android/server/telecom/
DCallIdMapper.java90 private ICallInfo mCallInfo; field in CallIdMapper
93 mCallInfo = callInfo; in CallIdMapper()
110 addCall(call, mCallInfo.getCallId(call)); in addCall()
128 return mCallInfo.getCallId(call); in getCallId()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DVideoProviderProxyTest.java53 @Mock private Analytics.CallInfo mCallInfo; field in VideoProviderProxyTest
66 when(mCall.getAnalytics()).thenReturn(mCallInfo); in setUp()
67 doNothing().when(mCallInfo).addVideoEvent(anyInt(), anyInt()); in setUp()
DMissedInformationTest.java94 @Mock Analytics.CallInfo mCallInfo; field in MissedInformationTest
411 when(mEmergencyCall.getAnalytics()).thenReturn(mCallInfo); in setUpEmergencyCall()
DCallLogManagerTest.java107 private Analytics.CallInfo mCallInfo; field in CallLogManagerTest
173 mCallInfo = new Analytics.CallInfo(); in setUp()
1314 when(fakeCall.getAnalytics()).thenReturn(mCallInfo); in makeFakeCall()
DInCallControllerTests.java153 @Mock Analytics.CallInfoImpl mCallInfo; field in InCallControllerTests
909 when(mMockCall.getAnalytics()).thenReturn(mCallInfo); in testBindToService_NullBinding_FallBackToSystem()
942 verify(mCallInfo).addInCallService(eq(defDialerComponentName.flattenToShortString()), in testBindToService_NullBinding_FallBackToSystem()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/telephony/
DBluetoothInCallServiceTest.java160 mBluetoothInCallService.mCallInfo = mMockCallInfo; in setUp()