Home
last modified time | relevance | path

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

/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/services/Telecomm/src/com/android/server/telecom/
DCallAudioManager.java317 int previousVideoState = call.getVideoState(); in onSessionModifyRequestReceived() local
322 boolean isUpgradeRequest = !VideoProfile.isReceptionEnabled(previousVideoState) && in onSessionModifyRequestReceived()
401 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) { in onVideoStateChanged() argument
404 "foreground.", VideoProfile.videoStateToString(previousVideoState), in onVideoStateChanged()
409 if (!VideoProfile.isVideo(previousVideoState) && in onVideoStateChanged()
412 " to %s", call.getId(), VideoProfile.videoStateToString(previousVideoState), in onVideoStateChanged()
DCallsManagerListenerBase.java90 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) { in onVideoStateChanged() argument
DCallDiagnosticServiceController.java134 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) {
DCall.java194 default void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) {}; in onVideoStateChanged() argument
275 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) {} in onVideoStateChanged() argument
4315 int previousVideoState = mVideoState;
4317 if (mVideoState != previousVideoState) {
4323 l.onVideoStateChanged(this, previousVideoState, mVideoState);
DCallsManager.java239 void onVideoStateChanged(Call call, int previousVideoState, int newVideoState); in onVideoStateChanged() argument
1364 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) { in onVideoStateChanged() argument
1366 listener.onVideoStateChanged(call, previousVideoState, newVideoState); in onVideoStateChanged()
DInCallController.java966 public void onVideoStateChanged(Call call, int previousVideoState, int newVideoState) {
/packages/apps/Dialer/java/com/android/incallui/
DVideoCallPresenter.java819 int previousVideoState = currentVideoState; in adjustVideoMode() local
825 if (!isVideoCall(previousVideoState) && isVideoCall(newVideoState)) { in adjustVideoMode()