Home
last modified time | relevance | path

Searched refs:gatewayInfo (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Car/libs/car-telephony-common/src/com/android/car/telephony/common/
DCallDetail.java89 GatewayInfo gatewayInfo = callDetail.getGatewayInfo(); in getNumber() local
90 if (gatewayInfo != null) { in getNumber()
91 number = gatewayInfo.getOriginalAddress().getSchemeSpecificPart(); in getNumber()
/packages/services/Telecomm/src/com/android/server/telecom/
DNewOutgoingCallIntentBroadcaster.java183 GatewayInfo gatewayInfo = getGateWayInfoFromIntent(intent, resultHandleUri); in onReceive() local
184 placeOutgoingCallImmediately(mCall, resultHandleUri, gatewayInfo, in onReceive()
485 private void placeOutgoingCallImmediately(Call call, Uri handle, GatewayInfo gatewayInfo, in placeOutgoingCallImmediately() argument
492 mCallsManager.placeOutgoingCall(call, handle, gatewayInfo, speakerphoneOn, videoState); in placeOutgoingCallImmediately()
DCall.java635 GatewayInfo gatewayInfo, in Call() argument
644 handle, null, gatewayInfo, connectionManagerPhoneAccountHandle, in Call()
659 GatewayInfo gatewayInfo, in Call() argument
682 mGatewayInfo = gatewayInfo; in Call()
721 GatewayInfo gatewayInfo, in Call() argument
732 phoneNumberUtilsAdapter, handle, gatewayInfo, in Call()
1354 void setGatewayInfo(GatewayInfo gatewayInfo) { in setGatewayInfo() argument
1355 mGatewayInfo = gatewayInfo; in setGatewayInfo()
DConnectionServiceWrapper.java1261 GatewayInfo gatewayInfo = call.getGatewayInfo(); in createConnection()
1263 if (gatewayInfo != null && gatewayInfo.getGatewayProviderPackageName() != null && in createConnection()
1264 gatewayInfo.getOriginalAddress() != null) { in createConnection()
1268 gatewayInfo.getGatewayProviderPackageName()); in createConnection()
1271 gatewayInfo.getOriginalAddress()); in createConnection()
DCallsManager.java1935 GatewayInfo gatewayInfo, boolean speakerphoneOn,
2009 placeOutgoingCall(call, handle, gatewayInfo, speakerphoneOn,
2031 placeOutgoingCall(call, handle, gatewayInfo, speakerphoneOn, videoState);
2160 public void placeOutgoingCall(Call call, Uri handle, GatewayInfo gatewayInfo,
2168 final Uri uriHandle = (gatewayInfo == null) ? handle : gatewayInfo.getGatewayAddress();
2170 if (gatewayInfo == null) {
2178 call.setGatewayInfo(gatewayInfo);
/packages/apps/Car/Dialer/tests/robotests/src/com/android/car/dialer/livedata/
DCallDetailLiveDataTest.java103 GatewayInfo gatewayInfo = new GatewayInfo("", uri, uri); in testOnDetailsChanged() local
110 when(updatedDetails.getGatewayInfo()).thenReturn(gatewayInfo); in testOnDetailsChanged()
/packages/apps/Car/Dialer/tests/robotests/src/com/android/car/dialer/ui/activecall/
DInCallViewModelTest.java92 GatewayInfo gatewayInfo = new GatewayInfo("", GATEWAY_ADDRESS, GATEWAY_ADDRESS); in setup() local
96 when(mMockDetails.getGatewayInfo()).thenReturn(gatewayInfo); in setup()
/packages/services/Telecomm/src/com/android/server/telecom/callredirection/
DCallRedirectionProcessor.java280 GatewayInfo gatewayInfo, in CallRedirectionProcessor() argument
288 mRedirectionGatewayInfo = gatewayInfo; in CallRedirectionProcessor()