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()
330 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) { in onVideoStateChanged() argument
333 "foreground.", VideoProfile.videoStateToString(previousVideoState), in onVideoStateChanged()
338 if (!VideoProfile.isVideo(previousVideoState) && in onVideoStateChanged()
341 " to %s", call.getId(), VideoProfile.videoStateToString(previousVideoState), in onVideoStateChanged()
DCallsManagerListenerBase.java72 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) { in onVideoStateChanged() argument
DCall.java135 void onVideoStateChanged(Call call, int previousVideoState, int newVideoState); in onVideoStateChanged() argument
204 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) {} in onVideoStateChanged() argument
3352 int previousVideoState = mVideoState; in setVideoState() local
3354 if (mVideoState != previousVideoState) { in setVideoState()
3358 l.onVideoStateChanged(this, previousVideoState, mVideoState); in setVideoState()
DCallsManager.java167 void onVideoStateChanged(Call call, int previousVideoState, int newVideoState); in onVideoStateChanged() argument
942 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) { in onVideoStateChanged() argument
944 listener.onVideoStateChanged(call, previousVideoState, newVideoState); in onVideoStateChanged()
DInCallController.java831 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) {
/packages/apps/Dialer/java/com/android/incallui/videotech/ims/
DImsVideoCallCallback.java62 int previousVideoState = ImsVideoTech.getUnpausedVideoState(call.getDetails().getVideoState()); in onSessionModifyRequestReceived() local
65 boolean wasVideoCall = VideoProfile.isVideo(previousVideoState); in onSessionModifyRequestReceived()
71 } else if (previousVideoState != newVideoState) { in onSessionModifyRequestReceived()
DImsVideoTech.java45 private int previousVideoState = VideoProfile.STATE_AUDIO_ONLY; field in ImsVideoTech
151 if (newVideoState != previousVideoState in onCallStateChanged()
156 previousVideoState = newVideoState; in onCallStateChanged()
/packages/apps/Dialer/java/com/android/incallui/
DVideoCallPresenter.java819 int previousVideoState = currentVideoState; in adjustVideoMode() local
825 if (!isVideoCall(previousVideoState) && isVideoCall(newVideoState)) { in adjustVideoMode()