Home
last modified time | relevance | path

Searched refs:getGatewayInfo (Results 1 – 15 of 15) sorted by relevance

/packages/apps/Car/libs/car-telephony-common/src/com/android/car/telephony/common/
DCallDetail.java127 GatewayInfo gatewayInfo = callDetail.getGatewayInfo(); in getNumber()
144 return callDetail != null && callDetail.getGatewayInfo() != null in getGatewayInfoOriginalAddress()
145 ? callDetail.getGatewayInfo().getOriginalAddress() in getGatewayInfoOriginalAddress()
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/telephony/
DBluetoothInCallServiceTest.java304 when(confCall1.getGatewayInfo()).thenReturn( in testConferenceInProgressCDMA()
306 when(confCall2.getGatewayInfo()).thenReturn( in testConferenceInProgressCDMA()
365 when(foregroundCall.getGatewayInfo()).thenReturn( in testListCurrentCallsCdmaHold()
367 when(heldCall.getGatewayInfo()).thenReturn( in testListCurrentCallsCdmaHold()
413 when(confCall1.getGatewayInfo()).thenReturn( in testListCurrentCallsCdmaConference()
415 when(confCall2.getGatewayInfo()).thenReturn( in testListCurrentCallsCdmaConference()
452 when(waitingCall.getGatewayInfo()).thenReturn( in testWaitingCallClccResponse()
495 when(ringingCall.getGatewayInfo()).thenReturn( in testRingingCallClccResponse()
518 when(ringingCall.getGatewayInfo()).thenReturn( in testCallClccCache()
535 when(newHoldingCall.getGatewayInfo()).thenReturn( in testCallClccCache()
[all …]
/packages/apps/Dialer/java/com/android/dialer/telecom/
DTelecomCallUtil.java55 if (call.getDetails().getGatewayInfo() != null) { in getNumber()
56 return call.getDetails().getGatewayInfo().getOriginalAddress().getSchemeSpecificPart(); in getNumber()
/packages/apps/Bluetooth/src/com/android/bluetooth/telephony/
DBluetoothCall.java288 public GatewayInfo getGatewayInfo() { in getGatewayInfo() method in BluetoothCall
289 return getDetails().getGatewayInfo(); in getGatewayInfo()
DBluetoothInCallService.java653 if (call.getGatewayInfo() != null) { in sendClccForCall()
654 addressUri = call.getGatewayInfo().getOriginalAddress(); in sendClccForCall()
/packages/apps/Car/Dialer/testing/src/com/android/car/dialer/testing/
DMockEntityFactory.java35 when(callDetails.getGatewayInfo()).thenReturn(gatewayInfo); in createMockCallDetails()
/packages/apps/Dialer/java/com/android/incallui/
DCallCardPresenter.java905 return DialerCall.getNumberFromHandle(primary.getGatewayInfo().getGatewayAddress()); in getGatewayNumber()
929 pm.getApplicationInfo(primary.getGatewayInfo().getGatewayProviderPackageName(), 0); in getConnectionLabel()
977 && primary.getGatewayInfo() != null in hasOutgoingGatewayCall()
978 && !primary.getGatewayInfo().isEmpty(); in hasOutgoingGatewayCall()
/packages/apps/Car/Dialer/tests/unittests/src/com/android/car/dialer/livedata/
DCallDetailLiveDataTest.java90 when(updatedDetails.getGatewayInfo()).thenReturn(gatewayInfo); in testOnDetailsChanged()
/packages/apps/Car/Dialer/tests/robotests/src/com/android/car/dialer/ui/activecall/
DInCallViewModelTest.java105 when(mMockDetails.getGatewayInfo()).thenReturn(gatewayInfo); in setup()
/packages/apps/Car/Dialer/tests/unittests/src/com/android/car/dialer/telecom/
DInCallServiceImplTest.java121 when(mMockCallDetails.getGatewayInfo()).thenReturn(gatewayInfo); in setUp()
/packages/services/Telecomm/src/com/android/server/telecom/
DParcelableCallUtils.java240 .setGatewayInfo(call.getGatewayInfo()) in toParcelableCall()
DConnectionServiceWrapper.java1284 GatewayInfo gatewayInfo = call.getGatewayInfo(); in createConnection()
DCall.java1504 public GatewayInfo getGatewayInfo() { in getGatewayInfo() method in Call
/packages/apps/Car/Dialer/framework/fake/src/com/android/car/dialer/framework/
DMockCallManager.java504 when(mDetails.getGatewayInfo()).thenReturn(gatewayInfo); in updateCallDetails()
/packages/apps/Dialer/java/com/android/incallui/call/
DDialerCall.java1040 public GatewayInfo getGatewayInfo() { in getGatewayInfo() method in DialerCall
1041 return telecomCall == null ? null : telecomCall.getDetails().getGatewayInfo(); in getGatewayInfo()