Searched refs:videoState (Results 1 - 25 of 33) sorted by relevance

12

/frameworks/base/telecomm/java/android/telecom/
H A DVideoProfile.java80 * if (videoState == VideoProfile.STATE_AUDIO_ONLY) {
91 * if (VideoProfile.isAudioOnly(videoState)) {
126 * @param videoState The video state.
128 public VideoProfile(@VideoState int videoState) { argument
129 this(videoState, QUALITY_DEFAULT);
135 * @param videoState The video state.
138 public VideoProfile(@VideoState int videoState, @VideoQuality int quality) { argument
139 mVideoState = videoState;
220 sb.append("[VideoProfile videoState = ");
231 * @param videoState Th
234 videoStateToString(@ideoState int videoState) argument
263 isAudioOnly(@ideoState int videoState) argument
274 isVideo(@ideoState int videoState) argument
286 isTransmissionEnabled(@ideoState int videoState) argument
296 isReceptionEnabled(@ideoState int videoState) argument
306 isBidirectional(@ideoState int videoState) argument
316 isPaused(@ideoState int videoState) argument
327 hasState(@ideoState int videoState, @VideoState int state) argument
[all...]
H A DConnectionRequest.java53 * @param videoState Determines the video state for the connection.
59 int videoState) {
60 this(accountHandle, handle, extras, videoState, null);
67 * @param videoState Determines the video state for the connection.
75 int videoState,
80 mVideoState = videoState;
55 ConnectionRequest( PhoneAccountHandle accountHandle, Uri handle, Bundle extras, int videoState) argument
71 ConnectionRequest( PhoneAccountHandle accountHandle, Uri handle, Bundle extras, int videoState, String telecomCallId) argument
H A DParcelableConference.java52 int videoState,
63 mVideoState = videoState;
143 int videoState = source.readInt();
149 connectionIds, videoCallProvider, videoState, connectTimeMillis, statusHints,
45 ParcelableConference( PhoneAccountHandle phoneAccount, int state, int connectionCapabilities, int connectionProperties, List<String> connectionIds, IVideoProvider videoProvider, int videoState, long connectTimeMillis, StatusHints statusHints, Bundle extras) argument
H A DParcelableCall.java79 int videoState,
101 mVideoState = videoState;
290 int videoState = source.readInt();
314 videoState,
60 ParcelableCall( String id, int state, DisconnectCause disconnectCause, List<String> cannedSmsResponses, int capabilities, int properties, long connectTimeMillis, Uri handle, int handlePresentation, String callerDisplayName, int callerDisplayNamePresentation, GatewayInfo gatewayInfo, PhoneAccountHandle accountHandle, boolean isVideoCallProviderChanged, IVideoProvider videoCallProvider, String parentCallId, List<String> childCallIds, StatusHints statusHints, int videoState, List<String> conferenceableCallIds, Bundle intentExtras, Bundle extras) argument
H A DParcelableConnection.java65 int videoState,
82 mVideoState = videoState;
203 int videoState = source.readInt();
224 videoState,
55 ParcelableConnection( PhoneAccountHandle phoneAccount, int state, int capabilities, int properties, Uri address, int addressPresentation, String callerDisplayName, int callerDisplayNamePresentation, IVideoProvider videoProvider, int videoState, boolean ringbackRequested, boolean isVoipAudioMode, long connectTimeMillis, StatusHints statusHints, DisconnectCause disconnectCause, List<String> conferenceableConnectionIds, Bundle extras) argument
H A DInCallAdapter.java53 * @param videoState The video state in which to answer the call.
55 public void answerCall(String callId, int videoState) { argument
57 mAdapter.answerCall(callId, videoState);
H A DRemoteConnection.java170 * @param videoState The new video state of the {@code RemoteConnection}.
172 public void onVideoStateChanged(RemoteConnection connection, int videoState) {} argument
868 * @param videoState The video state in which to answer the call.
871 public void answer(int videoState) { argument
874 mConnectionService.answerVideo(mConnectionId, videoState);
1220 void setVideoState(final int videoState) { argument
1221 mVideoState = videoState;
1228 callback.onVideoStateChanged(connection, videoState);
H A DConnectionService.java158 public void answerVideo(String callId, int videoState) {
161 args.argi1 = videoState;
331 int videoState = args.argi1;
332 answerVideo(callId, videoState);
508 public void onVideoStateChanged(Conference c, int videoState) {
510 Log.d(this, "onVideoStateChanged set video state %d", videoState);
511 mAdapter.setVideoState(id, videoState);
582 public void onVideoStateChanged(Connection c, int videoState) {
584 Log.d(this, "Adapter set video state %d", videoState);
585 mAdapter.setVideoState(id, videoState);
800 answerVideo(String callId, int videoState) argument
[all...]
H A DConnectionServiceAdapter.java371 * @param videoState The video state.
373 void setVideoState(String callId, int videoState) { argument
374 Log.v(this, "setVideoState: %d", videoState);
377 adapter.setVideoState(callId, videoState);
H A DConference.java58 public void onVideoStateChanged(Conference c, int videoState) { } argument
472 * @param videoState The new video state.
474 public final void setVideoState(Connection c, int videoState) { argument
476 this, c, videoState);
478 l.onVideoStateChanged(this, videoState);
H A DVideoCallImpl.java335 * @param videoState the new video state.
337 public void setVideoState(int videoState) { argument
338 mVideoState = videoState;
H A DConnection.java554 public void onVideoStateChanged(Connection c, int videoState) {} argument
1543 * @param videoState The new video state.
1545 public final void setVideoState(int videoState) { argument
1547 Log.d(this, "setVideoState %d", videoState);
1548 mVideoState = videoState;
2086 * @param videoState The video state in which to answer the connection.
2088 public void onAnswer(int videoState) {} argument
H A DConnectionServiceAdapterServant.java385 public void setVideoState(String connectionId, int videoState) {
386 mHandler.obtainMessage(MSG_SET_VIDEO_STATE, videoState, 0, connectionId).sendToTarget();
H A DRemoteConnectionService.java272 public void setVideoState(String callId, int videoState) {
274 .setVideoState(videoState);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPullCall.java33 * @param videoState The video state of the call to be pulled.
35 void pullExternalCall(String number, int videoState); argument
H A DImsPhoneCallTracker.java324 public Connection dial(String dialString, int videoState, Bundle intentExtras) throws argument
328 return dial(dialString, oirMode, videoState, intentExtras);
335 dial(String dialString, int clirMode, int videoState, Bundle intentExtras) argument
359 if (isEmergencyNumber && VideoProfile.isVideo(videoState) &&
362 videoState = VideoProfile.STATE_AUDIO_ONLY;
378 mPendingCallVideoState = videoState;
407 mPendingMO.setVideoState(videoState);
413 dialInternal(mPendingMO, clirMode, videoState, intentExtras);
423 mPendingCallVideoState = videoState;
470 private void dialInternal(ImsPhoneConnection conn, int clirMode, int videoState, argument
540 acceptCall(int videoState) argument
2175 pullExternalCall(String number, int videoState) argument
[all...]
H A DImsPhone.java263 acceptCall(int videoState) throws CallStateException { argument
264 mCT.acceptCall(videoState);
519 dial(String dialString, int videoState) throws CallStateException { argument
520 return dialInternal(dialString, videoState, null);
525 dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) argument
528 return dialInternal (dialString, videoState, intentExtras);
531 private Connection dialInternal(String dialString, int videoState, Bundle intentExtras) argument
542 return mCT.dial(dialString, videoState, intentExtras);
553 return mCT.dial(dialString, videoState, intentExtras);
555 return mCT.dial(mmi.getDialingNumber(), mmi.getCLIRMode(), videoState, intentExtra
[all...]
/frameworks/base/telephony/java/com/android/ims/
H A DImsCallProfile.java383 * @param videoState The video state.
386 public static int getCallTypeFromVideoState(int videoState) { argument
387 boolean videoTx = isVideoStateSet(videoState, VideoProfile.STATE_TX_ENABLED);
388 boolean videoRx = isVideoStateSet(videoState, VideoProfile.STATE_RX_ENABLED);
389 boolean isPaused = isVideoStateSet(videoState, VideoProfile.STATE_PAUSED);
453 * @param videoState The video state bit mask.
457 private static boolean isVideoStateSet(int videoState, int videoStateToCheck) { argument
458 return (videoState & videoStateToCheck) == videoStateToCheck;
/frameworks/base/telecomm/java/com/android/internal/telecom/
H A DIInCallAdapter.aidl30 void answerCall(String callId, int videoState);
H A DIConnectionService.aidl47 void answerVideo(String callId, int videoState);
H A DIConnectionServiceAdapter.aidl76 void setVideoState(String callId, int videoState);
H A DITelecomService.aidl190 void acceptRingingCallWithVideoState(int videoState);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DConnection.java88 public void onVideoStateChanged(int videoState); argument
107 public void onVideoStateChanged(int videoState) {} argument
700 * Sets the videoState for the current connection and reports the changes to all listeners.
705 public void setVideoState(int videoState) { argument
706 mVideoState = videoState;
H A DPhoneInternalInterface.java281 * @param videoState The video state in which to answer the call.
284 void acceptCall(int videoState) throws CallStateException; argument
410 * @param videoState The desired video state for the connection.
416 Connection dial(String dialString, int videoState) throws CallStateException; argument
429 * @param videoState The desired video state for the connection.
436 Connection dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhoneBase.java70 public Connection dial(String dialString, UUSInfo uusInfo, int videoState, Bundle intentExtras) argument
73 return dial(dialString, videoState);

Completed in 463 milliseconds

12