Home
last modified time | relevance | path

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

/packages/apps/Car/libs/car-telephony-common/src/com/android/car/telephony/common/
DCallDetail.java100 GatewayInfo gatewayInfo = callDetail.getGatewayInfo(); in getNumber()
117 return callDetail != null && callDetail.getGatewayInfo() != null in getGatewayInfoOriginalAddress()
118 ? callDetail.getGatewayInfo().getOriginalAddress() in getGatewayInfoOriginalAddress()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DBluetoothPhoneServiceTest.java314 when(confCall1.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testConferenceInProgressCDMA()
316 when(confCall2.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testConferenceInProgressCDMA()
363 when(foregroundCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testListCurrentCallsCdmaHold()
365 when(heldCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testListCurrentCallsCdmaHold()
405 when(confCall1.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testListCurrentCallsCdmaConference()
407 when(confCall2.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testListCurrentCallsCdmaConference()
441 when(waitingCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testWaitingCallClccResponse()
480 when(ringingCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testRingingCallClccResponse()
501 when(ringingCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testCallClccCache()
515 when(newHoldingCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, 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/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/services/Telecomm/src/com/android/server/telecom/
DBluetoothPhoneServiceImpl.java646 if (call.getGatewayInfo() != null) { in sendClccForCall()
647 addressUri = call.getGatewayInfo().getOriginalAddress(); in sendClccForCall()
DParcelableCallUtils.java238 .setGatewayInfo(call.getGatewayInfo()) in toParcelableCall()
DConnectionServiceWrapper.java1269 GatewayInfo gatewayInfo = call.getGatewayInfo(); in createConnection()
DCall.java1387 public GatewayInfo getGatewayInfo() { in getGatewayInfo() method in Call
/packages/apps/Car/Dialer/tests/robotests/src/com/android/car/dialer/livedata/
DCallDetailLiveDataTest.java111 when(updatedDetails.getGatewayInfo()).thenReturn(gatewayInfo); in testOnDetailsChanged()
/packages/apps/Car/Dialer/tests/robotests/src/com/android/car/dialer/ui/activecall/
DInCallViewModelTest.java96 when(mMockDetails.getGatewayInfo()).thenReturn(gatewayInfo); in setup()
/packages/apps/Dialer/java/com/android/incallui/call/
DDialerCall.java1039 public GatewayInfo getGatewayInfo() { in getGatewayInfo() method in DialerCall
1040 return telecomCall == null ? null : telecomCall.getDetails().getGatewayInfo(); in getGatewayInfo()