Home
last modified time | relevance | path

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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
DImsPhoneCallTest.java48 ImsStreamMediaProfile mMediaProfile; field in ImsPhoneCallTest
59 mMediaProfile = new ImsStreamMediaProfile(); in setUp()
129 mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_INACTIVE; in testUpdateRingBackTone()
130 mImsCallProfile.mMediaProfile = mMediaProfile; in testUpdateRingBackTone()
144 mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_INACTIVE; in testStopRingingOnHandover()
145 mImsCallProfile.mMediaProfile = mMediaProfile; in testStopRingingOnHandover()
DImsPhoneCallTrackerTest.java861 callProfile.mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_SEND_RECEIVE; in testNoRemoteHoldtone()
887 callProfile.mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_INACTIVE; in testRemoteToneInactive()
912 callProfile.mMediaProfile.mAudioDirection = ImsStreamMediaProfile.DIRECTION_SEND_RECEIVE; in testRemoteHoldtone()
1113 mSecondImsCall.getCallProfile().mMediaProfile = new ImsStreamMediaProfile(); in testEndRingbackOnSrvcc()
1114 mSecondImsCall.getCallProfile().mMediaProfile.mAudioDirection = in testEndRingbackOnSrvcc()
/frameworks/base/telephony/java/android/telephony/ims/
DImsCallProfile.java459 public ImsStreamMediaProfile mMediaProfile; field in ImsCallProfile
474 mMediaProfile = new ImsStreamMediaProfile(); in ImsCallProfile()
500 mMediaProfile = new ImsStreamMediaProfile(); in ImsCallProfile()
529 mMediaProfile = mediaProfile; in ImsCallProfile()
609 mMediaProfile = profile.mMediaProfile; in updateMediaProfile()
641 + ", mediaProfile=" + mMediaProfile.toString() in toString()
662 out.writeParcelable(mMediaProfile, 0); in writeToParcel()
676 mMediaProfile = in.readParcelable(ImsStreamMediaProfile.class.getClassLoader()); in readFromParcel()
736 return mMediaProfile; in getMediaProfile()
862 return mMediaProfile.mVideoDirection == ImsStreamMediaProfile.DIRECTION_INACTIVE; in isVideoPaused()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneConnection.java996 if (negotiatedCallProfile.mMediaProfile != null) { in updateMediaCapabilities()
997 mIsRttEnabledForCall = negotiatedCallProfile.mMediaProfile.isRttCall(); in updateMediaCapabilities()
1062 && localCallProfile.mMediaProfile.mAudioQuality != mAudioCodec) { in updateMediaCapabilities()
1063 mAudioCodec = localCallProfile.mMediaProfile.mAudioQuality; in updateMediaCapabilities()
1308 || localCallProfile.mMediaProfile == null) { in getAudioQualityFromCallProfile()
1312 final boolean isEvsCodecHighDef = (localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
1314 || localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
1316 || localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
1319 final boolean isHighDef = (localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
1321 || localCallProfile.mMediaProfile.mAudioQuality in getAudioQualityFromCallProfile()
DImsPhoneCall.java327 || (imsCall.getCallProfile().mMediaProfile == null)) { in isLocalTone()
331 ImsStreamMediaProfile mediaProfile = imsCall.getCallProfile().mMediaProfile; in isLocalTone()
DImsPhoneCallTracker.java1479 profile.mMediaProfile.mRttMode = ImsStreamMediaProfile.RTT_MODE_FULL; in dialInternal()
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsCall.java1737 if (!mCallProfile.mMediaProfile.isRttCall()) { in sendRttMessage()
1756 if (rttOn && mCallProfile.mMediaProfile.isRttCall()) { in sendRttModifyRequest()
1759 } else if (!rttOn && !mCallProfile.mMediaProfile.isRttCall()) { in sendRttModifyRequest()
1768 requestedProfile.mMediaProfile.setRttMode(rttOn in sendRttModifyRequest()
1789 if (mCallProfile.mMediaProfile.isRttCall()) { in sendRttModifyResponse()
1856 mediaProfile.mAudioQuality = mCallProfile.mMediaProfile.mAudioQuality; in createHoldMediaProfile()
1857 mediaProfile.mVideoQuality = mCallProfile.mMediaProfile.mVideoQuality; in createHoldMediaProfile()
1874 mediaProfile.mAudioQuality = mCallProfile.mMediaProfile.mAudioQuality; in createResumeMediaProfile()
1875 mediaProfile.mVideoQuality = mCallProfile.mMediaProfile.mVideoQuality; in createResumeMediaProfile()
2410 mCallProfile.mMediaProfile.copyFrom(profile); in callSessionProgressing()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DTelephonyMetrics.java2716 int codec = convertImsCodec(localCallProfile.mMediaProfile.mAudioQuality); in writeAudioCodecIms()