Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/android/telephony/ims/
DImsCallProfile.java475 public ImsStreamMediaProfile mMediaProfile; field in ImsCallProfile
490 mMediaProfile = new ImsStreamMediaProfile(); in ImsCallProfile()
516 mMediaProfile = new ImsStreamMediaProfile(); in ImsCallProfile()
545 mMediaProfile = mediaProfile; in ImsCallProfile()
625 mMediaProfile = profile.mMediaProfile; in updateMediaProfile()
657 + ", mediaProfile=" + (mMediaProfile != null ? mMediaProfile.toString() : "null") in toString()
678 out.writeParcelable(mMediaProfile, 0); in writeToParcel()
692 mMediaProfile = in.readParcelable(ImsStreamMediaProfile.class.getClassLoader()); in readFromParcel()
752 return mMediaProfile; in getMediaProfile()
878 return mMediaProfile.mVideoDirection == ImsStreamMediaProfile.DIRECTION_INACTIVE; in isVideoPaused()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
DImsPhoneCallTest.java50 ImsStreamMediaProfile mMediaProfile; field in ImsPhoneCallTest
61 mMediaProfile = new ImsStreamMediaProfile(); in setUp()
131 mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_INACTIVE; in testUpdateRingBackTone()
132 mImsCallProfile.mMediaProfile = mMediaProfile; in testUpdateRingBackTone()
146 mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_INACTIVE; in testStopRingingOnHandover()
147 mImsCallProfile.mMediaProfile = mMediaProfile; in testStopRingingOnHandover()
DImsPhoneCallTrackerTest.java862 callProfile.mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_SEND_RECEIVE; in testNoRemoteHoldtone()
888 callProfile.mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_INACTIVE; in testRemoteToneInactive()
913 callProfile.mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_SEND_RECEIVE; in testRemoteHoldtone()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneConnection.java1007 if (negotiatedCallProfile.mMediaProfile != null) { in updateMediaCapabilities()
1008 mIsRttEnabledForCall = negotiatedCallProfile.mMediaProfile.isRttCall(); in updateMediaCapabilities()
1073 && localCallProfile.mMediaProfile.mAudioQuality != mAudioCodec) { in updateMediaCapabilities()
1074 mAudioCodec = localCallProfile.mMediaProfile.mAudioQuality; in updateMediaCapabilities()
1311 || localCallProfile.mMediaProfile == null) { in getAudioQualityFromCallProfile()
1315 final boolean isEvsCodecHighDef = (localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
1317 || localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
1319 || localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
1322 final boolean isHighDef = (localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
1324 || localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
DImsPhoneCall.java331 || (imsCall.getCallProfile().mMediaProfile == null)) { in isLocalTone()
335 ImsStreamMediaProfile mediaProfile = imsCall.getCallProfile().mMediaProfile; in isLocalTone()
DImsPhoneCallTracker.java1499 profile.mMediaProfile.mRttMode = ImsStreamMediaProfile.RTT_MODE_FULL; in dialInternal()
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsCall.java1738 if (!mCallProfile.mMediaProfile.isRttCall()) { in sendRttMessage()
1757 if (rttOn && mCallProfile.mMediaProfile.isRttCall()) { in sendRttModifyRequest()
1760 } else if (!rttOn && !mCallProfile.mMediaProfile.isRttCall()) { in sendRttModifyRequest()
1769 requestedProfile.mMediaProfile.setRttMode(rttOn in sendRttModifyRequest()
1790 if (mCallProfile.mMediaProfile.isRttCall()) { in sendRttModifyResponse()
1857 mediaProfile.mAudioQuality = mCallProfile.mMediaProfile.mAudioQuality; in createHoldMediaProfile()
1858 mediaProfile.mVideoQuality = mCallProfile.mMediaProfile.mVideoQuality; in createHoldMediaProfile()
1875 mediaProfile.mAudioQuality = mCallProfile.mMediaProfile.mAudioQuality; in createResumeMediaProfile()
1876 mediaProfile.mVideoQuality = mCallProfile.mMediaProfile.mVideoQuality; in createResumeMediaProfile()
2411 mCallProfile.mMediaProfile.copyFrom(profile); in callSessionProgressing()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DTelephonyMetrics.java2745 int codec = convertImsCodec(localCallProfile.mMediaProfile.mAudioQuality); in writeAudioCodecIms()