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

1 2

  /packages/apps/Mms/src/com/android/mms/transaction/
AbstractRetryScheme.java 22 public static final int INCOMING = 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...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
DriverCall.java 34 INCOMING, // MT call only
126 case 4: return State.INCOMING;
Call.java 33 IDLE, ACTIVE, HOLDING, DIALING, ALERTING, INCOMING, WAITING, DISCONNECTED, DISCONNECTING;
40 return this == INCOMING || this == WAITING;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCall.java 44 case INCOMING: return State.INCOMING;
CdmaCallTracker.java 275 if (mRingingCall.getState() == CdmaCall.State.INCOMING) {
276 Rlog.i("phone", "acceptCall: incoming...");
310 if (mRingingCall.getState() == CdmaCall.State.INCOMING) {
311 throw new CallStateException("cannot be in the incoming state");
628 || (dc.state == DriverCall.State.INCOMING
    [all...]
CdmaConnection.java 571 * An incoming or outgoing call has connected
579 // bug #678474: incoming call interpreted as missed call, even though
589 // Only release wake lock for incoming calls, for outgoing calls the wake lock
740 /** "connecting" means "has never been ACTIVE" for both incoming
763 case INCOMING:
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCall.java 45 case INCOMING: return State.INCOMING;
GsmCallTracker.java 266 if (mRingingCall.getState() == GsmCall.State.INCOMING) {
267 Rlog.i("phone", "acceptCall: incoming...");
293 if (mRingingCall.getState() == GsmCall.State.INCOMING) {
294 throw new CallStateException("cannot be in the incoming state");
561 || (dc.state == DriverCall.State.INCOMING
    [all...]
GsmConnection.java 529 * An incoming or outgoing call has connected
537 // bug #678474: incoming call interpreted as missed call, even though
673 /** "connecting" means "has never been ACTIVE" for both incoming
696 case INCOMING:
  /packages/apps/InCallUI/src/com/android/incallui/
InCallPresenter.java 194 // Examples: (1) A new incoming call could come in and then get disconnected before
196 // (2) All calls could disconnect and then get a new incoming call before the
230 // incoming call screen
253 * Called when there is a new incoming call.
259 InCallState newState = startOrFinishUi(InCallState.INCOMING);
276 * changes from being connected (incoming/outgoing/active) to disconnected.
302 newState = InCallState.INCOMING;
445 * INCOMING CALL
559 // A new Incoming call means that the user needs to be notified of the the call (since
563 // The process for incoming calls is as follows
    [all...]
CallCardPresenter.java 81 call.getState() == Call.State.INCOMING);
136 if (state == InCallState.INCOMING) {
141 // getCallToDisplay doesn't go through outgoing or incoming calls. It will return the
160 mPrimary.getIdentification(), mPrimary.getState() == Call.State.INCOMING);
172 mSecondary.getIdentification(), mSecondary.getState() == Call.State.INCOMING);
246 call.getState() == Call.State.INCOMING);
AnswerPresenter.java 24 * Presenter for the Incoming call widget.
40 // TODO: change so that answer presenter never starts up if it's not incoming.
45 // Listen for incoming calls.
55 // This is necessary because the activity can be destroyed while an incoming call exists.
56 // This happens when back button is pressed while incoming call is still being shown.
92 Log.d(TAG, "Showing incoming for call id: " + mCallId + " " + this);
109 if (call.getState() != Call.State.INCOMING && call.getState() != Call.State.CALL_WAITING) {
StatusBarNotifier.java 123 * This method will never actually launch the incoming-call UI.
128 // allowFullScreenIntent=false means *don't* allow the incoming
135 * incoming call UI in response to a new incoming call.
138 * If an incoming call is ringing (or call-waiting), the notification
143 * (This is the mechanism that actually brings up the incoming call UI
153 * incoming call, which could cause slow responsiveness and/or visible
157 * actually ringing (or, more likely, if an incoming call *was*
166 // launch the incoming call UI if necessary.
195 * @param allowFullScreenIntent If true, *and* an incoming call i
    [all...]
CallButtonPresenter.java 83 } else if (state == InCallState.INCOMING) {
CallCardFragment.java 263 if (Call.State.INCOMING == state) {
268 // Gravity is aligned left when receiving an incoming call in landscape.
345 // Also, display a special icon (alongside the "Incoming call"
346 // label) if there's an incoming call and audio will be routed
380 } else if (Call.State.INCOMING == state || Call.State.CALL_WAITING == state) {
CallList.java 232 Call call = getFirstCallWithState(Call.State.INCOMING);
391 // no delay for missed/rejected incoming calls
454 * Called when a new incoming call comes in.
455 * This is the only method that gets called for incoming calls. Listeners
456 * that want to perform an action on incoming call should respond in this method
458 * incoming calls.
464 * states, updating information, etc. This method will NOT be called for new incoming
  /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/services/Telephony/common/src/com/android/services/telephony/common/
Call.java 47 public static final int INCOMING = 3; /* A normal incoming phone call */
48 public static final int CALL_WAITING = 4; /* Incoming call while another is active */
59 case INCOMING:
106 INCOMING_MISSED, /* an incoming call that was missed and never answered */
121 INCOMING_REJECTED, /* an incoming call that was rejected */
152 .put(Call.State.INCOMING, "INCOMING")
184 // Time that this call transitioned into ACTIVE state from INCOMING, WAITING, or OUTGOING.
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 106 // FIXME: is it true that we cannot take any incoming call if
148 if ((mRingingCall.getState() == Call.State.INCOMING) ||
401 case SipSession.State.INCOMING_CALL_ANSWERING: return Call.State.INCOMING;
523 Call.State newState = makeCallWait ? State.WAITING : State.INCOMING;
775 if (newState == Call.State.INCOMING) {
776 setState(mOwner.getState()); // INCOMING or WAITING
    [all...]
  /packages/services/Telephony/src/com/android/phone/
BluetoothPhoneService.java 561 // If the Ringing Call state is INCOMING, that means this is the very first call
563 if (ringingCallState == Call.State.INCOMING) {
564 if (VDBG) log("Filling clccConnections[0] for INCOMING state");
645 case INCOMING:
769 // For CDMA, the way we switch to a new incoming call is by
    [all...]
DTMFTonePlayer.java 356 hasIncomingCall |= (calls.get(i).getState() == Call.State.INCOMING);
RejectWithTextMessageManager.java 42 * Helper class to manage the "Respond via Message" feature for incoming calls.
165 * for the specified incoming call.
170 * - a bogus or blank incoming number
177 * to detect whether the incoming call is from a landline (with most
190 if (!(call.getState() == com.android.services.telephony.common.Call.State.INCOMING) &&
193 // The call is in some state other than INCOMING or WAITING!
210 // Check the incoming number:
214 Log.w(TAG, "allowRespondViaSmsForCall: no incoming number!");
218 // The incoming number is actually a URI (i.e. a SIP address),
223 Log.i(TAG, "allowRespondViaSmsForCall: incoming 'number' is a SIP address.")
    [all...]
CallModeler.java 172 // and pass it through our normal incoming logic.
198 Log.e(TAG, "CDMA Call waiting rejection without an incoming call.");
228 state == Call.State.INCOMING ||
385 // We only send updates for live calls which are not incoming (ringing).
386 // Disconnected and incoming calls are handled by onDisconnect and
754 case INCOMING:
755 retval = State.INCOMING;
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 299 // One ringing (INCOMING) call
318 assertEquals(Call.State.INCOMING, mGSMPhone.getRingingCall().getState());
444 assertEquals(Call.State.INCOMING, mGSMPhone.getRingingCall().getState());
608 // Test incoming not missed calls
    [all...]

Completed in 396 milliseconds

1 2