HomeSort by relevance Sort by last modified time
    Searched defs:isVideoCall (Results 1 - 4 of 4) sorted by null

  /packages/apps/InCallUI/src/com/android/incallui/
CallUtils.java 37 public static boolean isVideoCall(Call call) {
38 return call != null && isVideoCall(call.getVideoState());
41 public static boolean isVideoCall(int videoState) {
47 if (!CallUtils.isVideoCall(call)) {
55 return CallUtils.isVideoCall(call) && call.getState() == Call.State.ACTIVE;
59 if (!CallUtils.isVideoCall(call)) {
73 return isVideoCall(call) && call.getState() == Call.State.ACTIVE;
VideoPauseController.java 185 } else if (!isVideoCall(mPrimaryCallContext) && canVideoPause && mIsInBackground) {
400 return isVideoCall(callContext) && callContext.getState() == Call.State.ACTIVE;
409 private static boolean isVideoCall(CallContext callContext) {
410 return callContext != null && CallUtils.isVideoCall(callContext.getVideoState());
Call.java 474 public boolean isVideoCall(Context context) {
476 CallUtils.isVideoCall(getVideoState());
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneBase.java     [all...]

Completed in 503 milliseconds