Searched defs:isVideoCall (Results 1 - 11 of 11) sorted by relevance

/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DOnPhoneNumberPickerActionListener.java40 void onCallNumberDirectly(String phoneNumber, boolean isVideoCall); argument
/packages/apps/InCallUI/src/com/android/incallui/
H A DCallUtils.java37 public static boolean isVideoCall(Call call) { method in class:CallUtils
38 return call != null && isVideoCall(call.getVideoState());
41 public static boolean isVideoCall(int videoState) { method in class:CallUtils
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;
H A DVideoPauseController.java185 } else if (!isVideoCall(mPrimaryCallContext) && canVideoPause && mIsInBackground) {
400 return isVideoCall(callContext) && callContext.getState() == Call.State.ACTIVE;
409 private static boolean isVideoCall(CallContext callContext) { method in class:VideoPauseController
410 return callContext != null && CallUtils.isVideoCall(callContext.getVideoState());
H A DCall.java474 public boolean isVideoCall(Context context) { method in class:Call
476 CallUtils.isVideoCall(getVideoState());
H A DCallCardFragment.java505 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)) {
504 setSecondary(boolean show, String name, boolean nameIsNumber, String label, String providerLabel, boolean isConference, boolean isVideoCall) argument
H A DCallCardPresenter.java395 && !mPrimary.isVideoCall(mContext);
460 if (mPrimary != null && mPrimary.isVideoCall(mContext)) {
615 false /* isVideoCall */);
627 mSecondary.isVideoCall(mContext));
639 mSecondary.isVideoCall(mContext));
643 false /* isVideoCall */);
857 String providerLabel, boolean isConference, boolean isVideoCall);
856 setSecondary(boolean show, String name, boolean nameIsNumber, String label, String providerLabel, boolean isConference, boolean isVideoCall) argument
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DCallTypeHelper.java61 public CharSequence getCallTypeText(int callType, boolean isVideoCall) { argument
64 if (isVideoCall) {
71 if (isVideoCall) {
78 if (isVideoCall) {
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
H A DCallNotificationReceiver.java73 * @param isVideoCall {@code True} if this is a video call.
75 public static void sendIncomingCallIntent(Context context, Uri handle, boolean isVideoCall) { argument
83 extras.putBoolean(TestConnectionService.EXTRA_IS_VIDEO_CALL, isVideoCall);
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DContactSelectionActivity.java497 public void onCallNumberDirectly(String phoneNumber, boolean isVideoCall) { argument
/packages/apps/Dialer/tests/src/com/android/dialer/calllog/
H A DPhoneCallDetailsHelperTest.java291 private void assertIsVideoCall(boolean isVideoCall) { argument
292 assertEquals(isVideoCall, mViews.callTypeIcons.isVideoShown());
/packages/apps/Dialer/src/com/android/dialer/
H A DDialtactsActivity.java1237 onCallNumberDirectly(phoneNumber, false /* isVideoCall */);
1241 public void onCallNumberDirectly(String phoneNumber, boolean isVideoCall) { argument
1247 Intent intent = isVideoCall ?

Completed in 807 milliseconds