Home
last modified time | relevance | path

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

/packages/services/Telecomm/src/com/android/server/telecom/
DCall.java331 GatewayInfo gatewayInfo, in Call() argument
341 mGatewayInfo = gatewayInfo; in Call()
368 GatewayInfo gatewayInfo, in Call() argument
374 this(context, repository, handle, gatewayInfo, connectionManagerPhoneAccountHandle, in Call()
589 void setGatewayInfo(GatewayInfo gatewayInfo) { in setGatewayInfo() argument
590 mGatewayInfo = gatewayInfo; in setGatewayInfo()
DConnectionServiceWrapper.java682 GatewayInfo gatewayInfo = call.getGatewayInfo(); in createConnection()
684 if (gatewayInfo != null && gatewayInfo.getGatewayProviderPackageName() != null && in createConnection()
685 gatewayInfo.getOriginalAddress() != null) { in createConnection()
689 gatewayInfo.getGatewayProviderPackageName()); in createConnection()
692 gatewayInfo.getOriginalAddress()); in createConnection()
DCallsManager.java576 void placeOutgoingCall(Call call, Uri handle, GatewayInfo gatewayInfo, boolean speakerphoneOn, in placeOutgoingCall() argument
584 final Uri uriHandle = (gatewayInfo == null) ? handle : gatewayInfo.getGatewayAddress(); in placeOutgoingCall()
586 if (gatewayInfo == null) { in placeOutgoingCall()
594 call.setGatewayInfo(gatewayInfo); in placeOutgoingCall()
DNewOutgoingCallIntentBroadcaster.java139 GatewayInfo gatewayInfo = getGateWayInfoFromIntent(intent, resultHandleUri); in onReceive() local
140 mCallsManager.placeOutgoingCall(mCall, resultHandleUri, gatewayInfo, in onReceive()
/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.java565 boolean isEmergencyCall, RawGatewayInfo gatewayInfo, CallGatewayManager callGateway) { in placeCall() argument
566 final Uri gatewayUri = gatewayInfo.gatewayUri; in placeCall()
634 callGateway.setGatewayInfoForConnection(connection, gatewayInfo); in placeCall()
666 startGetCallerInfo(context, connection, null, null, gatewayInfo); in placeCall()