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

  /packages/apps/InCallUI/src/com/android/incallui/
CallButtonPresenter.java 22 import android.telecom.InCallService.VideoCall;
236 VideoCall videoCall = mCall.getVideoCall();
237 if (videoCall == null) {
243 videoCall.sendSessionModifyRequest(videoProfile);
252 VideoCall videoCall = mCall.getVideoCall();
253 if (videoCall == null) {
259 videoCall.sendSessionModifyRequest(videoProfile);
273 VideoCall videoCall = mCall.getVideoCall()
    [all...]
VideoCallPresenter.java 24 import android.telecom.InCallService.VideoCall;
77 * The camera has not yet been set on the {@link VideoCall}; negotiation has not yet
83 * The camera has been set on the {@link VideoCall}, but camera capabilities have not yet
90 * been set on the {@link VideoCall}.
95 * The surface has been set on the {@link VideoCall}.
117 * The {@link VideoCall} used to inform the video telephony layer of changes to the video
120 private VideoCall mVideoCall;
202 * @return The {@link VideoCall}.
204 private VideoCall getVideoCall() {
356 VideoCall videoCall = mPrimaryCall.getTelecommCall().getVideoCall()
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallTypeIconsView.java 82 mWidth += mResources.videoCall.getIntrinsicWidth();
83 mHeight = Math.max(mHeight, mResources.videoCall.getIntrinsicHeight());
144 final Drawable drawable = mResources.videoCall;
145 final int right = left + mResources.videoCall.getIntrinsicWidth();
146 drawable.setBounds(left, 0, right, mResources.videoCall.getIntrinsicHeight());
176 public final Drawable videoCall;
217 videoCall = new BitmapDrawable(context.getResources(), scaled);
218 videoCall.setColorFilter(r.getColor(R.color.dialtacts_secondary_text_color),

Completed in 52 milliseconds