HomeSort by relevance Sort by last modified time
    Searched refs:INCOMING (Results 1 - 25 of 41) sorted by null

1 2

  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
StateTransitionAnimation.java 32 public static final Spec INCOMING;
64 INCOMING = new Spec();
65 INCOMING.overlayAlphaFrom = 1f;
66 INCOMING.overlayAlphaTo = 0f;
67 INCOMING.overlayScaleFrom = 1f;
68 INCOMING.overlayScaleTo = 3f;
69 INCOMING.contentAlphaFrom = 0f;
70 INCOMING.contentAlphaTo = 1f;
71 INCOMING.contentScaleFrom = 0.25f;
72 INCOMING.contentScaleTo = 1f
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/ringtone/
DialerRingtoneManager.java 37 * Flag used to determine if the Dialer is responsible for playing ringtones for incoming calls.
68 && translateCallStateForCallWaiting(callState) == State.INCOMING
73 * Determines if an incoming call should vibrate as well as ring.
84 * The incoming callState is never set as {@link State#CALL_WAITING} because {@link
88 if (callState != State.INCOMING) {
91 return mCallList.getActiveCall() == null ? State.INCOMING : State.CALL_WAITING;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Call.java 35 IDLE, ACTIVE, HOLDING, DIALING, ALERTING, INCOMING, WAITING, DISCONNECTED, DISCONNECTING;
42 return this == INCOMING || this == WAITING;
57 case INCOMING: return State.INCOMING;
DriverCall.java 34 INCOMING, // MT call only
126 case 4: return State.INCOMING;
DefaultPhoneNotifier.java 355 case INCOMING:
GsmCdmaCallTracker.java 517 if (mRingingCall.getState() == GsmCdmaCall.State.INCOMING) {
518 Rlog.i("phone", "acceptCall: incoming...");
561 if (mRingingCall.getState() == GsmCdmaCall.State.INCOMING) {
562 throw new CallStateException("cannot be in the incoming state");
837 // from DIALING/ALERTING/INCOMING/WAITING to ACTIVE)
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/
VideoPauseController.java 71 || mPrevCallState == DialerCall.State.INCOMING);
75 * Determines if a call is in incoming/waiting state.
78 * @return {@code true} if the call is in incoming or waiting state, {@code false} otherwise.
83 || call.getState() == DialerCall.State.INCOMING);
139 if (newState == InCallState.INCOMING) {
182 * <p>Reject incoming or hangup dialing call: Where the previous call was an incoming call or a
184 * is incoming, pause video on the previous primary call.
202 // Send resume request for the active call, if user rejects incoming call, ends dialing
207 // incoming call
    [all...]
CallCardPresenter.java 93 * call state changes to an outgoing or incoming state for the first time, the UI can often be
170 startContactInfoSearch(call, true, call.getState() == DialerCall.State.INCOMING);
260 if (newState == InCallState.INCOMING) {
268 // getCallToDisplay doesn't go through outgoing or incoming calls. It will return the
310 mContext, mPrimary, mPrimary.getState() == DialerCall.State.INCOMING);
327 mContext, mSecondary, mSecondary.getState() == DialerCall.State.INCOMING);
343 // Hide the end call button instantly if we're receiving an incoming call.
347 callState != DialerCall.State.INCOMING /* animate */);
451 // photo is hidden when the incoming video surface is shown.
539 startContactInfoSearch(call, isPrimary, call.getState() == DialerCall.State.INCOMING);
    [all...]
InCallPresenter.java 472 // Examples: (1) A new incoming call could come in and then get disconnected before
474 // (2) All calls could disconnect and then get a new incoming call before the
528 "not attempting to block incoming call because user is locked");
532 Log.i(this, "Not attempting to block incoming emergency call");
536 Log.i(this, "Not attempting to block incoming call due to recent emergency call");
545 "not attempting to block incoming call because framework blocking is in use");
606 Log.i(this, "Rejecting incoming call from blocked number");
691 // an incoming call in that situation, just disconnect that "waiting for account" call and
692 // dismiss the dialog. The same activity will be reused to handle the new incoming call. See
695 if (newState == InCallState.INCOMING
    [all...]
ConferenceParticipantListAdapter.java 225 participantInfo.getCall().getState() == DialerCall.State.INCOMING,
360 getContext(), call, call.getState() == DialerCall.State.INCOMING);
StatusBarNotifier.java 101 // Notification for incoming calls. This is interruptive and will show up as a HUN.
103 // Notification for incoming calls in the case where there is already an active call.
197 * Updates the phone app's status bar notification *and* launches the incoming call UI in response
198 * to a new incoming call.
200 * <p>If an incoming call is ringing (or call-waiting), the notification will also include a
204 * <p>(This is the mechanism that actually brings up the incoming call UI when we receive a "new
208 * more likely, if an incoming call *was* ringing briefly but then disconnected). In that case,
255 (call.getState() == DialerCall.State.INCOMING
313 if (callState == DialerCall.State.INCOMING
359 // Set the intent as a full screen intent as well if a call is incoming
    [all...]
VideoCallPresenter.java 54 * surfaces based on other user interface events and incoming events from the {@class
156 * Determines if the incoming video surface should be shown based on the current videoState and
157 * callState. The video surface is shown when incoming video is not paused, the call is active or
162 * @return {@code true} if the incoming video surface should be shown, {@code false} otherwise.
171 //Show incoming Video for dialing calls to support early media
448 * Handles incoming calls.
462 * Handles state changes (including incoming calls)
491 // incoming call waiting call, the primary call is still the active video call, however
493 // incoming call, not the active video call.
496 if (newState == InCallPresenter.InCallState.INCOMING) {
    [all...]
CallButtonPresenter.java 118 } else if (newState == InCallState.INCOMING) {
  /packages/apps/Dialer/java/com/android/incallui/answerproximitysensor/
AnswerProximitySensor.java 48 if (call.getState() != State.INCOMING) {
49 LogUtil.i("AnswerProximitySensor.shouldUse", "call state is not incoming");
121 if (call.getState() != State.INCOMING) {
122 LogUtil.i("AnswerProximitySensor.onDialerCallUpdate", "no longer incoming, cleaning up");
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedGsmCallState.java 36 INCOMING(4), // MT call only
71 return new CallInfo (true, State.INCOMING, false, number);
120 return mState == State.INCOMING || mState == State.WAITING;
183 // ensure there aren't already calls INCOMING or WAITING
190 && (call.mState == CallInfo.State.INCOMING
288 && (call.mState == CallInfo.State.INCOMING
364 && (call.mState == CallInfo.State.INCOMING
  /packages/apps/Dialer/java/com/android/incallui/call/
CallList.java 133 call.getState() == DialerCall.State.INCOMING
139 "marking spam call as not spam because it's not an incoming call");
183 if (call.getState() == DialerCall.State.INCOMING
190 if (call.getState() != State.INCOMING) {
442 DialerCall call = getFirstCallWithState(DialerCall.State.INCOMING);
646 // no delay for missed/rejected incoming calls and canceled outgoing calls.
693 * Called when a new incoming call comes in. This is the only method that gets called for
694 * incoming calls. Listeners that want to perform an action on incoming call should respond in
695 * this method because {@link #onCallListChange} does not automatically get called for incoming
    [all...]
DialerCall.java 309 return DialerCall.State.INCOMING;
620 // We want to treat any incoming call that arrives a short time after an outgoing emergency call
651 if (mState == State.INCOMING) {
856 if (getState() == State.INCOMING) {
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/contactgrid/
BottomRow.java 145 return state.state == State.INCOMING || state.state == State.CALL_WAITING;
TopRow.java 67 if (state.state == State.INCOMING || state.state == State.CALL_WAITING) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 111 // FIXME: is it true that we cannot take any incoming call if
153 if ((mRingingCall.getState() == Call.State.INCOMING) ||
414 case SipSession.State.INCOMING_CALL_ANSWERING: return Call.State.INCOMING;
545 Call.State newState = makeCallWait ? State.WAITING : State.INCOMING;
798 if (newState == Call.State.INCOMING) {
799 setState(mOwner.getState()); // INCOMING or WAITING
    [all...]
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipConnection.java 263 case INCOMING:
341 * Determines the address for an incoming number.
343 * @param number The incoming number.
  /packages/services/Telephony/src/com/android/services/telephony/
CdmaConnection.java 118 case INCOMING:
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
ImsPhoneTest.java 152 doReturn(Call.State.INCOMING).when(mRingingCall).getState();
190 doReturn(Call.State.INCOMING).when(mRingingCall).getState();
216 doReturn(Call.State.INCOMING).when(mRingingCall).getState();
ImsPhoneConnectionTest.java 103 eq(ImsPhoneCall.State.INCOMING));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
TelephonyMetrics.java     [all...]

Completed in 555 milliseconds

1 2