Searched defs:videoCall (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DCallTypeIconsView.java82 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; field in class:CallTypeIconsView.Resources
217 videoCall = new BitmapDrawable(context.getResources(), scaled);
218 videoCall.setColorFilter(r.getColor(R.color.dialtacts_secondary_text_color),
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
H A DTestCallList.java136 InCallService.VideoCall videoCall = call.getVideoCall();
138 if (videoCall == null) {
143 videoCall.sendSessionModifyRequest(new VideoProfile(videoState));
157 InCallService.VideoCall videoCall = call.getVideoCall();
158 if (videoCall == null) {
163 videoCall.sendSessionModifyResponse(new VideoProfile(videoState));
168 public void onVideoCallChanged(Call call, InCallService.VideoCall videoCall) { argument
170 if (videoCall != null) {
173 videoCall.registerCallback(listener);
/packages/apps/InCallUI/src/com/android/incallui/
H A DVideoCallPresenter.java600 final VideoCall videoCall = call.getTelecommCall().getVideoCall();
601 Log.d(this, "checkForVideoCallChange: videoCall=" + videoCall + " mVideoCall="
603 if (!Objects.equals(videoCall, mVideoCall)) {
612 * @param videoCall The new video call.
615 final VideoCall videoCall = call.getTelecommCall().getVideoCall();
616 Log.d(this, "changeVideoCall to videoCall=" + videoCall + " mVideoCall=" + mVideoCall);
624 final boolean hasChanged = mVideoCall == null && videoCall != null;
626 mVideoCall = videoCall;
726 enableCamera(VideoCall videoCall, boolean isCameraRequired) argument
[all...]

Completed in 90 milliseconds