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

12

/frameworks/base/telecomm/java/android/telecom/
H A DVideoProfile.java55 * @param videoState The video state.
57 public VideoProfile(int videoState) { argument
58 this(videoState, QUALITY_DEFAULT);
64 * @param videoState The video state.
67 public VideoProfile(int videoState, int quality) { argument
68 mVideoState = videoState;
176 * @param videoState The video state.
179 public static boolean isAudioOnly(int videoState) { argument
180 return !hasState(videoState, TX_ENABLED) && !hasState(videoState, RX_ENABLE
188 isTransmissionEnabled(int videoState) argument
197 isReceptionEnabled(int videoState) argument
206 isBidirectional(int videoState) argument
215 isPaused(int videoState) argument
227 hasState(int videoState, int state) argument
[all...]
H A DParcelableConnection.java60 int videoState,
74 mVideoState = videoState;
166 int videoState = source.readInt();
183 videoState,
51 ParcelableConnection( PhoneAccountHandle phoneAccount, int state, int capabilities, Uri address, int addressPresentation, String callerDisplayName, int callerDisplayNamePresentation, IVideoProvider videoProvider, int videoState, boolean ringbackRequested, boolean isVoipAudioMode, StatusHints statusHints, DisconnectCause disconnectCause, List<String> conferenceableConnectionIds) argument
H A DConnectionRequest.java55 * @param videoState Determines the video state for the connection.
62 int videoState) {
66 mVideoState = videoState;
58 ConnectionRequest( PhoneAccountHandle accountHandle, Uri handle, Bundle extras, int videoState) argument
H A DInCallAdapter.java50 * @param videoState The video state in which to answer the call.
52 public void answerCall(String callId, int videoState) { argument
54 mAdapter.answerCall(callId, videoState);
H A DParcelableCall.java76 int videoState,
96 mVideoState = videoState;
261 int videoState = source.readInt();
283 videoState,
58 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, IVideoProvider videoCallProvider, String parentCallId, List<String> childCallIds, StatusHints statusHints, int videoState, List<String> conferenceableCallIds, Bundle extras) argument
H A DRemoteConnection.java158 * @param videoState The new video state of the {@code RemoteConnection}.
161 public void onVideoStateChanged(RemoteConnection connection, int videoState) {} argument
631 * @param videoState The video state in which to answer the call.
634 public void answer(int videoState) { argument
637 mConnectionService.answerVideo(mConnectionId, videoState);
890 void setVideoState(int videoState) { argument
891 mVideoState = videoState;
893 c.onVideoStateChanged(this, videoState);
H A DConnectionServiceAdapter.java335 * @param videoState The video state.
337 void setVideoState(String callId, int videoState) { argument
338 Log.v(this, "setVideoState: %d", videoState);
341 adapter.setVideoState(callId, videoState);
H A DConnectionService.java154 public void answerVideo(String callId, int videoState) {
157 args.argi1 = videoState;
292 int videoState = args.argi1;
293 answerVideo(callId, videoState);
455 public void onVideoStateChanged(Connection c, int videoState) {
457 Log.d(this, "Adapter set video state %d", videoState);
458 mAdapter.setVideoState(id, videoState);
622 private void answerVideo(String callId, int videoState) { argument
624 findConnectionForAction(callId, "answer").onAnswer(videoState);
H A DConnection.java255 public void onVideoStateChanged(Connection c, int videoState) {} argument
898 * @param videoState The new video state.
901 public final void setVideoState(int videoState) { argument
903 Log.d(this, "setVideoState %d", videoState);
904 mVideoState = videoState;
1280 * @param videoState The video state in which to answer the connection.
1283 public void onAnswer(int videoState) {} argument
H A DCall.java434 int videoState,
447 mVideoState = videoState;
569 * @param videoState The video state in which to answer the call.
571 public void answer(int videoState) { argument
572 mInCallAdapter.answerCall(mTelecomCallId, videoState);
423 Details( Uri handle, int handlePresentation, String callerDisplayName, int callerDisplayNamePresentation, PhoneAccountHandle accountHandle, int capabilities, int properties, DisconnectCause disconnectCause, long connectTimeMillis, GatewayInfo gatewayInfo, int videoState, StatusHints statusHints, Bundle extras) argument
H A DConnectionServiceAdapterServant.java325 public void setVideoState(String connectionId, int videoState) {
326 mHandler.obtainMessage(MSG_SET_VIDEO_STATE, videoState, 0, connectionId).sendToTarget();
H A DRemoteConnectionService.java247 public void setVideoState(String callId, int videoState) {
249 .setVideoState(videoState);
/frameworks/base/telecomm/java/com/android/internal/telecom/
H A DIInCallAdapter.aidl29 void answerCall(String callId, int videoState);
H A DIConnectionService.aidl47 void answerVideo(String callId, int videoState);
H A DIConnectionServiceAdapter.aidl71 void setVideoState(String callId, int videoState);
/frameworks/base/telephony/java/com/android/ims/
H A DImsCallProfile.java338 * @param videoState The video state.
341 public static int getCallTypeFromVideoState(int videoState) { argument
342 boolean videoTx = isVideoStateSet(videoState, VideoProfile.VideoState.TX_ENABLED);
343 boolean videoRx = isVideoStateSet(videoState, VideoProfile.VideoState.RX_ENABLED);
344 boolean isPaused = isVideoStateSet(videoState, VideoProfile.VideoState.PAUSED);
392 * @param videoState The video state bit mask.
396 private static boolean isVideoStateSet(int videoState, int videoStateToCheck) { argument
397 return (videoState & videoStateToCheck) == videoStateToCheck;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DConnection.java45 public void onVideoStateChanged(int videoState); argument
59 public void onVideoStateChanged(int videoState) {} argument
508 * Sets the videoState for the current connection and reports the changes to all listeners.
513 public void setVideoState(int videoState) { argument
514 mVideoState = videoState;
H A DPhone.java687 * @param videoState The video state in which to answer the call.
690 void acceptCall(int videoState) throws CallStateException; argument
833 * @param videoState The desired video state for the connection.
839 Connection dial(String dialString, int videoState) throws CallStateException; argument
849 * @param videoState The desired video state for the connection.
855 Connection dial(String dialString, UUSInfo uusInfo, int videoState) throws CallStateException; argument
H A DPhoneProxy.java672 public void acceptCall(int videoState) throws CallStateException { argument
673 mActivePhone.acceptCall(videoState);
737 public Connection dial(String dialString, int videoState) throws CallStateException { argument
738 return mActivePhone.dial(dialString, videoState);
742 public Connection dial(String dialString, UUSInfo uusInfo, int videoState) throws CallStateException { argument
743 return mActivePhone.dial(dialString, uusInfo, videoState);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhone.java231 acceptCall(int videoState) throws CallStateException { argument
232 mCT.acceptCall(videoState);
474 dial(String dialString, int videoState) throws CallStateException { argument
475 return dialInternal(dialString, videoState);
478 protected Connection dialInternal(String dialString, int videoState) argument
489 return mCT.dial(dialString, videoState);
500 return mCT.dial(dialString, videoState);
502 return mCT.dial(mmi.getDialingNumber(), mmi.getCLIRMode(), videoState);
H A DImsPhoneCallTracker.java278 dial(String dialString, int videoState) throws CallStateException { argument
281 return dial(dialString, oirMode, videoState);
288 dial(String dialString, int clirMode, int videoState) throws CallStateException { argument
353 dialInternal(mPendingMO, clirMode, videoState);
363 pendingCallVideoState = videoState;
386 private void dialInternal(ImsPhoneConnection conn, int clirMode, int videoState) { argument
403 int callType = ImsCallProfile.getCallTypeFromVideoState(videoState);
405 conn.setVideoState(videoState);
436 * @param videoState The video State
439 void acceptCall (int videoState) throw argument
[all...]
H A DImsPhoneBase.java69 public Connection dial(String dialString, UUSInfo uusInfo, int videoState) argument
72 return dial(dialString, videoState);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhoneBase.java73 public Connection dial(String dialString, UUSInfo uusInfo, int videoState) argument
76 return dial(dialString, videoState);
H A DSipPhone.java147 public void acceptCall(int videoState) throws CallStateException { argument
182 public Connection dial(String dialString, int videoState) throws CallStateException { argument
184 return dialInternal(dialString, videoState);
188 private Connection dialInternal(String dialString, int videoState) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java409 dial (String dialString, int videoState) throws CallStateException { argument
436 return imsPhone.dial(dialString, videoState);
449 return dialInternal(dialString, null, videoState);
456 int videoState) throws CallStateException {
463 public Connection dial(String dialString, UUSInfo uusInfo, int videoState) argument
507 acceptCall(int videoState) throws CallStateException { argument
510 imsPhone.acceptCall(videoState);
455 dialInternal(String dialString, UUSInfo uusInfo, int videoState) argument

Completed in 3800 milliseconds

12