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

  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
TestInCallServiceBroadcastReceiver.java 54 final int videoState = Integer.parseInt(intent.getData().getSchemeSpecificPart());
55 TestCallList.getInstance().sendUpgradeToVideoRequest(videoState);
57 final int videoState = Integer.parseInt(intent.getData().getSchemeSpecificPart());
58 TestCallList.getInstance().sendUpgradeToVideoResponse(videoState);
TestConnectionService.java 197 public void onAnswer(int videoState) {
198 setVideoState(videoState);
353 int videoState = isVideoCall ?
356 connection.setVideoState(videoState);
367 videoState);
368 connection.setVideoState(videoState);
  /packages/services/Telecomm/src/com/android/server/telecom/components/
UserCallIntentProcessor.java 121 int videoState = intent.getIntExtra(
124 Log.d(this, "processOutgoingCallIntent videoState = " + videoState);
126 if (VideoProfile.isVideo(videoState)
129 videoState = VideoProfile.STATE_AUDIO_ONLY;
131 videoState);
134 if (VideoProfile.isVideo(videoState) && isTtyModeEnabled()) {
  /packages/apps/InCallUI/src/com/android/incallui/
AnswerPresenter.java 190 private boolean isEnabled(int videoState, int mask) {
191 return (videoState & mask) == mask;
220 public void onAnswer(int videoState, Context context) {
227 Log.d(this, "onAnswer (upgradeCall) mCallId=" + mCallId + " videoState=" + videoState);
228 InCallPresenter.getInstance().acceptUpgradeRequest(videoState, context);
230 Log.d(this, "onAnswer (answerCall) mCallId=" + mCallId + " videoState=" + videoState);
231 TelecomAdapter.getInstance().answerCall(mCall.getId(), videoState);
298 public void showTargets(int targetSet, int videoState);
    [all...]
InCallPresenter.java 682 public void answerIncomingCall(Context context, int videoState) {
692 TelecomAdapter.getInstance().answerCall(call.getId(), videoState);
714 public void acceptUpgradeRequest(int videoState, Context context) {
715 Log.d(this, " acceptUpgradeRequest videoState " + videoState);
725 VideoProfile videoProfile = new VideoProfile(videoState);
    [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
MockConnection.java 39 public int videoState = VideoProfile.STATE_AUDIO_ONLY;
53 public void onAnswer(int videoState) {
54 super.onAnswer(videoState);
55 this.videoState = videoState;
  /packages/services/Telecomm/src/com/android/server/telecom/
NewOutgoingCallIntentBroadcaster.java 244 int videoState = mIntent.getIntExtra(
248 speakerphoneOn, videoState);
CallsManager.java 406 int videoState = videoProfile != null ? videoProfile.getVideoState() :
409 .videoStateToString(videoState));
679 * @param videoState The desired video state for the outgoing call.
682 int videoState) {
700 call.setVideoState(videoState);
739 * @param videoState The video state in which to answer the call.
741 void answerCall(Call call, int videoState) {
781 call.answer(videoState);
782 if (VideoProfile.isVideo(videoState) &&
    [all...]
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
ConnectionServiceFixture.java 101 public void answerVideo(String callId, int videoState) throws RemoteException { }
174 int videoState;
185 int videoState;
327 a.setVideoState(id, mConnectionById.get(id).videoState);
380 c.videoState,
396 c.videoState,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneBase.java     [all...]

Completed in 1410 milliseconds