Home
last modified time | relevance | path

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

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DBluetoothPhoneServiceTest.java313 when(confCall1.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testConferenceInProgressCDMA()
315 when(confCall2.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testConferenceInProgressCDMA()
362 when(foregroundCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testListCurrentCallsCdmaHold()
364 when(heldCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testListCurrentCallsCdmaHold()
404 when(confCall1.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testListCurrentCallsCdmaConference()
406 when(confCall2.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testListCurrentCallsCdmaConference()
440 when(waitingCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testWaitingCallClccResponse()
479 when(ringingCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testRingingCallClccResponse()
500 when(ringingCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testCallClccCache()
514 when(newHoldingCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testCallClccCache()
[all …]
/packages/apps/Car/libs/car-telephony-common/src/com/android/car/telephony/common/
DCallDetail.java89 GatewayInfo gatewayInfo = callDetail.getGatewayInfo(); in getNumber()
106 return callDetail != null && callDetail.getGatewayInfo() != null in getGatewayInfoOriginalAddress()
107 ? callDetail.getGatewayInfo().getOriginalAddress() in getGatewayInfoOriginalAddress()
/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.java642 if (call.getGatewayInfo() != null) { in sendClccForCall()
643 addressUri = call.getGatewayInfo().getOriginalAddress(); in sendClccForCall()
DParcelableCallUtils.java243 call.getGatewayInfo(), in toParcelableCall()
DConnectionServiceWrapper.java1102 GatewayInfo gatewayInfo = call.getGatewayInfo(); in createConnection()
DCall.java1164 public GatewayInfo getGatewayInfo() { in getGatewayInfo() method in Call
/packages/apps/Car/Dialer/tests/robotests/src/com/android/car/dialer/livedata/
DCallDetailLiveDataTest.java110 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.java1035 public GatewayInfo getGatewayInfo() { in getGatewayInfo() method in DialerCall
1036 return telecomCall == null ? null : telecomCall.getDetails().getGatewayInfo(); in getGatewayInfo()