Home
last modified time | relevance | path

Searched refs:imsCall (Results 1 – 5 of 5) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCallTracker.java174 ImsCall imsCall = mImsManager.takeCall(c, extras, mImsCallListener); in onIncomingCall() local
175 ImsPhoneConnection conn = new ImsPhoneConnection(mPhone, imsCall, in onIncomingCall()
182 if (activeCall != null && imsCall != null) { in onIncomingCall()
187 shouldDisconnectActiveCallOnAnswer(activeCall, imsCall); in onIncomingCall()
194 setVideoCallProvider(conn, imsCall); in onIncomingCall()
197 imsCall.getSession()); in onIncomingCall()
204 conn.update(imsCall, ImsPhoneCall.State.WAITING); in onIncomingCall()
1204 ImsCall imsCall = mImsManager.makeCall(profile, callees, mImsCallListener); in dialInternal() local
1205 conn.setImsCall(imsCall); in dialInternal()
1208 imsCall.getSession()); in dialInternal()
[all …]
DImsPhoneCall.java105 ImsCall imsCall = getImsCall(); in isMultiparty() local
106 if (imsCall == null) { in isMultiparty()
110 return imsCall.isMultiparty(); in isMultiparty()
249 ImsCall imsCall = getFirstConnection() == null ? in setMute() local
251 if (imsCall != null) { in setMute()
253 imsCall.setMute(mute); in setMute()
298 /*package*/ static boolean isLocalTone(ImsCall imsCall) { in isLocalTone() argument
299 if ((imsCall == null) || (imsCall.getCallProfile() == null) in isLocalTone()
300 || (imsCall.getCallProfile().mMediaProfile == null)) { in isLocalTone()
304 ImsStreamMediaProfile mediaProfile = imsCall.getCallProfile().mMediaProfile; in isLocalTone()
[all …]
DImsPhoneConnection.java168 public ImsPhoneConnection(Phone phone, ImsCall imsCall, ImsPhoneCallTracker ct, in ImsPhoneConnection() argument
177 mImsCall = imsCall; in ImsPhoneConnection()
179 if ((imsCall != null) && (imsCall.getCallProfile() != null)) { in ImsPhoneConnection()
180 mAddress = imsCall.getCallProfile().getCallExtra(ImsCallProfile.EXTRA_OI); in ImsPhoneConnection()
181 mCnapName = imsCall.getCallProfile().getCallExtra(ImsCallProfile.EXTRA_CNA); in ImsPhoneConnection()
183 imsCall.getCallProfile().getCallExtraInt(ImsCallProfile.EXTRA_OIR)); in ImsPhoneConnection()
185 imsCall.getCallProfile().getCallExtraInt(ImsCallProfile.EXTRA_CNAP)); in ImsPhoneConnection()
186 updateMediaCapabilities(imsCall); in ImsPhoneConnection()
199 updateExtras(imsCall); in ImsPhoneConnection()
688 public synchronized void setImsCall(ImsCall imsCall) { in setImsCall() argument
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DTelephonyTester.java233 ImsCall imsCall = imsPhoneCall.getImsCall(); in handleHandoverFailedIntent() local
234 if (imsCall == null) { in handleHandoverFailedIntent()
238 imsCall.getImsCallSessionListenerProxy().callSessionHandoverFailed(imsCall.getCallSession(), in handleHandoverFailedIntent()
262 ImsCall imsCall = imsPhoneCall.getImsCall(); in handleTestConferenceEventPackage() local
263 if (imsCall == null) { in handleTestConferenceEventPackage()
282 imsCall.conferenceStateUpdated(imsConferenceState); in handleTestConferenceEventPackage()
DPhone.java2256 ImsCall imsCall = imsPhoneCall.getImsCall(); in isVideoCallOrConference() local
2257 return imsCall != null && (imsCall.isVideoCall() || in isVideoCallOrConference()
2258 imsCall.wasVideoCall()); in isVideoCallOrConference()