Home
last modified time | relevance | path

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

/packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/embedded/
DTelecomUiCallList.java65 GatewayInfo gatewayInfo = details.getGatewayInfo(); in updateCallContainerFromTelecom() local
67 gatewayInfo == null ? null : gatewayInfo.getOriginalAddress()); in updateCallContainerFromTelecom()
70 if (gatewayInfo != null) { in updateCallContainerFromTelecom()
71 number = gatewayInfo.getOriginalAddress().getSchemeSpecificPart(); in updateCallContainerFromTelecom()
/packages/services/Telephony/src/com/android/phone/
DCallGatewayManager.java104 public void setGatewayInfoForConnection(Connection connection, RawGatewayInfo gatewayInfo) { in setGatewayInfoForConnection() argument
105 if (!gatewayInfo.isEmpty()) { in setGatewayInfoForConnection()
106 mMap.put(connection, gatewayInfo); in setGatewayInfoForConnection()
DPhoneUtils.java552 boolean isEmergencyCall, RawGatewayInfo gatewayInfo, CallGatewayManager callGateway) { in placeCall() argument
553 final Uri gatewayUri = gatewayInfo.gatewayUri; in placeCall()
621 callGateway.setGatewayInfoForConnection(connection, gatewayInfo); in placeCall()
653 startGetCallerInfo(context, connection, null, null, gatewayInfo); in placeCall()
/packages/apps/Car/Stream/src/com/android/car/stream/telecom/
DTelecomUtils.java221 GatewayInfo gatewayInfo = call.getDetails().getGatewayInfo(); in getGatewayInfoOriginalAddress() local
223 if (gatewayInfo != null && gatewayInfo.getOriginalAddress() != null) { in getGatewayInfoOriginalAddress()
224 return gatewayInfo.getGatewayAddress(); in getGatewayInfoOriginalAddress()
/packages/services/Telecomm/src/com/android/server/telecom/
DConnectionServiceWrapper.java908 GatewayInfo gatewayInfo = call.getGatewayInfo(); in createConnection()
910 if (gatewayInfo != null && gatewayInfo.getGatewayProviderPackageName() != null && in createConnection()
911 gatewayInfo.getOriginalAddress() != null) { in createConnection()
915 gatewayInfo.getGatewayProviderPackageName()); in createConnection()
918 gatewayInfo.getOriginalAddress()); in createConnection()
DCall.java475 GatewayInfo gatewayInfo, in Call() argument
492 mGatewayInfo = gatewayInfo; in Call()
532 GatewayInfo gatewayInfo, in Call() argument
540 callerInfoAsyncQueryFactory, phoneNumberUtilsAdapter, handle, gatewayInfo, in Call()
964 void setGatewayInfo(GatewayInfo gatewayInfo) { in setGatewayInfo() argument
965 mGatewayInfo = gatewayInfo; in setGatewayInfo()
DNewOutgoingCallIntentBroadcaster.java163 GatewayInfo gatewayInfo = getGateWayInfoFromIntent(intent, resultHandleUri); in onReceive() local
165 mCallsManager.placeOutgoingCall(mCall, resultHandleUri, gatewayInfo, in onReceive()
DCallsManager.java1146 public void placeOutgoingCall(Call call, Uri handle, GatewayInfo gatewayInfo, in placeOutgoingCall() argument
1154 final Uri uriHandle = (gatewayInfo == null) ? handle : gatewayInfo.getGatewayAddress(); in placeOutgoingCall()
1156 if (gatewayInfo == null) { in placeOutgoingCall()
1164 call.setGatewayInfo(gatewayInfo); in placeOutgoingCall()
/packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/
DInstrumentClusterController.java201 GatewayInfo gatewayInfo = details.getGatewayInfo(); in extractPhoneNumber() local
203 if (gatewayInfo != null) { in extractPhoneNumber()
204 number = gatewayInfo.getOriginalAddress().getSchemeSpecificPart(); in extractPhoneNumber()