Home
last modified time | relevance | path

Searched refs:newVideoState (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneConnection.java996 int newVideoState = ImsCallProfile in updateMediaCapabilities() local
999 if (oldVideoState != newVideoState) { in updateMediaCapabilities()
1007 !VideoProfile.isPaused(newVideoState)) { in updateMediaCapabilities()
1015 updateVideoState(newVideoState); in updateMediaCapabilities()
1023 VideoProfile.isPaused(newVideoState)) { in updateMediaCapabilities()
1147 private void updateVideoState(int newVideoState) { in updateVideoState() argument
1149 mImsVideoCallProviderWrapper.onVideoStateChanged(newVideoState); in updateVideoState()
1151 setVideoState(newVideoState); in updateVideoState()
1152 mOwner.getPhone().getVoiceCallSessionStats().onVideoStateChange(this, newVideoState); in updateVideoState()
1477 int newVideoState = responseProfile.getVideoState(); in onReceiveSessionModifyResponse() local
[all …]
DImsExternalCallTracker.java363 int newVideoState = ImsCallProfile.getVideoStateFromCallType(state.getCallType()); in updateExistingConnection() local
364 if (newVideoState != connection.getVideoState()) { in updateExistingConnection()
365 connection.setVideoState(newVideoState); in updateExistingConnection()
369 boolean isCallPullPermitted = isCallPullPermitted(state.isCallPullable(), newVideoState); in updateExistingConnection()
DImsPhoneCallTracker.java4757 private void modifyVideoCall(ImsCall imsCall, int newVideoState) { in modifyVideoCall() argument
4763 new VideoProfile(oldVideoState), new VideoProfile(newVideoState)); in modifyVideoCall()
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
DImsVideoCallProviderWrapper.java583 public void onVideoStateChanged(int newVideoState) { in onVideoStateChanged() argument
584 if (VideoProfile.isPaused(mCurrentVideoState) && !VideoProfile.isPaused(newVideoState)) { in onVideoStateChanged()
589 VideoProfile.videoStateToString(newVideoState))); in onVideoStateChanged()
595 VideoProfile.videoStateToString(newVideoState))); in onVideoStateChanged()
597 mCurrentVideoState = newVideoState; in onVideoStateChanged()