Home
last modified time | relevance | path

Searched refs:canVideoPause (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Dialer/InCallUI/src/com/android/incallui/
DVideoPauseController.java157 boolean canVideoPause = VideoUtils.canVideoPause(call); in onStateChange()
159 log("onStateChange, canVideoPause=" + canVideoPause); in onStateChange()
167 if (isDialing(mPrimaryCallContext) && canVideoPause && mIsInBackground) { in onStateChange()
171 } else if (!isVideoCall(mPrimaryCallContext) && canVideoPause && mIsInBackground) { in onStateChange()
195 final boolean canVideoPause = VideoUtils.canVideoPause(call); in onPrimaryCallChanged()
199 && canVideoPause && !mIsInBackground) { in onPrimaryCallChanged()
203 } else if (isIncomingCall(call) && canVideoPause(mPrimaryCallContext)) { in onPrimaryCallChanged()
270 if (canVideoPause(mPrimaryCallContext)) { in onResume()
285 if (canVideoPause(mPrimaryCallContext)) { in onPause()
346 private static boolean canVideoPause(CallContext callContext) { in canVideoPause() method in VideoPauseController
DVideoUtils.java78 public static boolean canVideoPause(Call call) { in canVideoPause() method in VideoUtils