HomeSort by relevance Sort by last modified time
    Searched refs:isVideoCall (Results 1 - 19 of 19) 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;
InCallVideoCallCallback.java 55 boolean wasVideoCall = CallUtils.isVideoCall(previousVideoState);
56 boolean isVideoCall = CallUtils.isVideoCall(newVideoState);
59 if (wasVideoCall && !isVideoCall) {
100 boolean isVideoCall = CallUtils.isVideoCall(responseProfile.getVideoState());
101 if (modifySucceeded && isVideoCall) {
103 } else if (!modifySucceeded && isVideoCall) {
105 } else if (modifySucceeded && !isVideoCall) {
VideoCallPresenter.java 462 final boolean isVideoCall = CallUtils.isVideoCall(call);
465 Log.d(this, "checkForVideoStateChange: isVideoCall= " + isVideoCall
477 if (isVideoCall) {
485 final boolean isVideoCall = CallUtils.isVideoCall(call);
488 Log.d(this, "checkForCallStateChange: isVideoCall= " + isVideoCall
496 if (isVideoCall) {
    [all...]
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());
CallCardPresenter.java 395 && !mPrimary.isVideoCall(mContext);
460 if (mPrimary != null && mPrimary.isVideoCall(mContext)) {
615 false /* isVideoCall */);
627 mSecondary.isVideoCall(mContext));
639 mSecondary.isVideoCall(mContext));
643 false /* isVideoCall */);
    [all...]
Call.java 474 public boolean isVideoCall(Context context) {
476 CallUtils.isVideoCall(getVideoState());
CallCardFragment.java 505 String providerLabel, boolean isConference, boolean isVideoCall) {
516 mSecondaryCallVideoCallIcon.setVisibility(isVideoCall ? View.VISIBLE : View.GONE);
604 if (CallUtils.isVideoCall(videoState)
783 } else if (CallUtils.isVideoCall(videoState)) {
    [all...]
CallButtonPresenter.java 359 final boolean isVideo = CallUtils.isVideoCall(call);
CallList.java 545 if (call.getVideoCall() != null && CallUtils.isVideoCall(call)) {
StatusBarNotifier.java 295 if (call.isVideoCall(mContext)) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
OnPhoneNumberPickerActionListener.java 40 void onCallNumberDirectly(String phoneNumber, boolean isVideoCall);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallTypeHelper.java 61 public CharSequence getCallTypeText(int callType, boolean isVideoCall) {
64 if (isVideoCall) {
71 if (isVideoCall) {
78 if (isVideoCall) {
CallDetailHistoryAdapter.java 126 boolean isVideoCall = (details.features & Calls.FEATURES_VIDEO) == Calls.FEATURES_VIDEO
131 callTypeIconView.setShowVideo(isVideoCall);
132 callTypeTextView.setText(mCallTypeHelper.getCallTypeText(callType, isVideoCall));
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
CallNotificationReceiver.java 73 * @param isVideoCall {@code True} if this is a video call.
75 public static void sendIncomingCallIntent(Context context, Uri handle, boolean isVideoCall) {
83 extras.putBoolean(TestConnectionService.EXTRA_IS_VIDEO_CALL, isVideoCall);
TestConnectionService.java 345 boolean isVideoCall = extras.getBoolean(EXTRA_IS_VIDEO_CALL);
350 Uri.fromParts(PhoneAccount.SCHEME_TEL, getDummyNumber(isVideoCall), null)
353 int videoState = isVideoCall ?
  /packages/apps/Dialer/tests/src/com/android/dialer/calllog/
PhoneCallDetailsHelperTest.java 291 private void assertIsVideoCall(boolean isVideoCall) {
292 assertEquals(isVideoCall, mViews.callTypeIcons.isVideoShown());
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneBase.java     [all...]
  /packages/apps/Dialer/src/com/android/dialer/
DialtactsActivity.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactSelectionActivity.java 497 public void onCallNumberDirectly(String phoneNumber, boolean isVideoCall) {

Completed in 329 milliseconds