Home
last modified time | relevance | path

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

/packages/services/Telecomm/src/com/android/server/telecom/
DCallAudioManager.java254 int previousVideoState = call.getVideoState(); in onSessionModifyRequestReceived() local
259 boolean isUpgradeRequest = !VideoProfile.isReceptionEnabled(previousVideoState) && in onSessionModifyRequestReceived()
333 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) { in onVideoStateChanged() argument
336 "foreground.", VideoProfile.videoStateToString(previousVideoState), in onVideoStateChanged()
341 if (!VideoProfile.isVideo(previousVideoState) && in onVideoStateChanged()
344 " to %s", call.getId(), VideoProfile.videoStateToString(previousVideoState), in onVideoStateChanged()
DCall.java122 void onVideoStateChanged(Call call, int previousVideoState, int newVideoState); in onVideoStateChanged() argument
183 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) {} in onVideoStateChanged() argument
2524 int previousVideoState = mVideoState; in setVideoState() local
2526 if (mVideoState != previousVideoState) { in setVideoState()
2530 l.onVideoStateChanged(this, previousVideoState, mVideoState); in setVideoState()
DCallsManagerListenerBase.java72 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) { in onVideoStateChanged() argument
DCallsManager.java116 void onVideoStateChanged(Call call, int previousVideoState, int newVideoState); in onVideoStateChanged() argument
638 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) { in onVideoStateChanged() argument
640 listener.onVideoStateChanged(call, previousVideoState, newVideoState); in onVideoStateChanged()
DInCallController.java660 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) {
/packages/apps/Dialer/java/com/android/incallui/videotech/ims/
DImsVideoCallCallback.java58 int previousVideoState = ImsVideoTech.getUnpausedVideoState(call.getDetails().getVideoState()); in onSessionModifyRequestReceived() local
61 boolean wasVideoCall = VideoProfile.isVideo(previousVideoState); in onSessionModifyRequestReceived()
67 } else if (previousVideoState != newVideoState) { in onSessionModifyRequestReceived()
DImsVideoTech.java43 private int previousVideoState = VideoProfile.STATE_AUDIO_ONLY; field in ImsVideoTech
141 if (newVideoState != previousVideoState in onCallStateChanged()
146 previousVideoState = newVideoState; in onCallStateChanged()
/packages/apps/Dialer/java/com/android/incallui/
DVideoCallPresenter.java805 int previousVideoState = mCurrentVideoState; in adjustVideoMode() local
811 if (!isVideoCall(previousVideoState) && isVideoCall(newVideoState)) { in adjustVideoMode()