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

1 2 3 4 5 6 7 8

  /packages/services/Telecomm/src/com/android/server/telecom/
CallState.java 40 * {@link #DISCONNECTED} if it failed.
53 * state usually transition to {@link #ACTIVE} if the call was answered or {@link #DISCONNECTED}
54 * if the call was disconnected somehow (e.g., failure or cancellation of the call by the user).
61 * ringtone. Normal transitions are to {@link #ACTIVE} if answered or {@link #DISCONNECTED}
82 * Indicates that a call is currently disconnected. All states can transition to this state
88 public static final int DISCONNECTED = 7;
97 * Indicates that the call is in the process of being disconnected and will transition next
98 * to a {@link #DISCONNECTED} state.
102 * ConnectionService has confirmed the call as disconnected.
131 case DISCONNECTED
    [all...]
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-android/src/com/badlogic/gdx/controllers/android/
AndroidControllerEvent.java 27 public static final int DISCONNECTED = 5;
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-gwt/src/com/badlogic/gdx/controllers/gwt/
GwtControllerEvent.java 28 public static final int DISCONNECTED = 5;
  /frameworks/base/wifi/java/android/net/wifi/
SupplicantState.java 39 DISCONNECTED,
142 * DISCONNECTED state above), but it also does not attempt to connect
184 case DISCONNECTED:
207 case DISCONNECTED:
223 case DISCONNECTED:
  /frameworks/base/tests/utils/testutils/java/com/android/internal/util/test/
BidirectionalAsyncChannel.java 38 public enum ChannelState { DISCONNECTED, HALF_CONNECTED, CONNECTED, FAILURE };
39 private ChannelState mState = ChannelState.DISCONNECTED;
47 assertEquals("AsyncChannel must be disconnected to connect",
48 ChannelState.DISCONNECTED, mState);
70 mState = ChannelState.DISCONNECTED;
72 Log.d(TAG, "Channel disconnected" + this);
87 mState = ChannelState.DISCONNECTED;
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
BidirectionalAsyncChannel.java 38 public enum ChannelState { DISCONNECTED, HALF_CONNECTED, CONNECTED, FAILURE };
39 private ChannelState mState = ChannelState.DISCONNECTED;
47 assertEquals("AsyncChannel must be disconnected to connect",
48 ChannelState.DISCONNECTED, mState);
70 mState = ChannelState.DISCONNECTED;
72 Log.d(TAG, "Channel disconnected" + this);
87 mState = ChannelState.DISCONNECTED;
WifiNotificationControllerTest.java 107 NetworkInfo.DetailedState.DISCONNECTED);
121 NetworkInfo.DetailedState.DISCONNECTED);
  /packages/apps/Nfc/src/com/android/nfc/ndefpush/
NdefPushClient.java 38 private static final int DISCONNECTED = 0;
44 private int mState = DISCONNECTED;
49 if (mState != DISCONNECTED) {
61 mState = DISCONNECTED;
77 mState = DISCONNECTED;
141 mState = DISCONNECTED;
  /cts/tests/tests/net/src/android/net/cts/
NetworkInfo_StateTest.java 27 assertEquals(State.DISCONNECTED, State.valueOf("DISCONNECTED"));
40 assertEquals(State.DISCONNECTED, expected[4]);
NetworkInfo_DetailedStateTest.java 29 assertEquals(DetailedState.DISCONNECTED, DetailedState.valueOf("DISCONNECTED"));
49 assertEquals(DetailedState.DISCONNECTED, expected[8]);
  /packages/apps/Nfc/src/com/android/nfc/handover/
HandoverClient.java 35 private static final int DISCONNECTED = 0;
47 if (mState != DISCONNECTED) {
58 mState = DISCONNECTED;
75 mState = DISCONNECTED;
95 mState = DISCONNECTED;
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
BluetoothPbapObexSession.java 55 final static int DISCONNECTED = 2;
65 private int mState = DISCONNECTED;
90 mState = DISCONNECTED;
120 Log.e(TAG, "Adding messages failed, obex must be disconnected.");
163 mState = DISCONNECTED;
173 if (mState != DISCONNECTED) {
189 mState = DISCONNECTED;
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepClient.java 39 private int mState = DISCONNECTED;
45 private static final int DISCONNECTED = 0;
134 if (mState != DISCONNECTED) {
161 mState = DISCONNECTED;
172 mState = DISCONNECTED;
192 mState = DISCONNECTED;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
GsmCdmaCall.java 82 * Called by GsmCdmaConnection when it has disconnected
85 if (mState != State.DISCONNECTED) {
86 /* If only disconnected connections remain, we are disconnected*/
91 if (mConnections.get(i).getState() != State.DISCONNECTED) {
98 mState = State.DISCONNECTED;
Call.java 35 IDLE, ACTIVE, HOLDING, DIALING, ALERTING, INCOMING, WAITING, DISCONNECTED, DISCONNECTING;
38 return !(this == IDLE || this == DISCONNECTED || this == DISCONNECTING);
129 * @return true if the call contains only disconnected connections (if any)
262 * Called when it's time to clean up disconnected Connection objects
267 if (c.getState() == State.DISCONNECTED) {
  /frameworks/base/core/java/android/net/
NetworkInfo.java 40 * <tr><td><code>IDLE</code></td><td><code>DISCONNECTED</code></td></tr>
46 * <tr><td><code>DISCONNECTED</code></td><td><code>DISCONNECTED</code></td></tr>
47 * <tr><td><code>UNAVAILABLE</code></td><td><code>DISCONNECTED</code></td></tr>
48 * <tr><td><code>FAILED</code></td><td><code>DISCONNECTED</code></td></tr>
52 CONNECTING, CONNECTED, SUSPENDED, DISCONNECTING, DISCONNECTED, UNKNOWN
78 DISCONNECTED,
98 stateMap.put(DetailedState.IDLE, State.DISCONNECTED);
99 stateMap.put(DetailedState.SCANNING, State.DISCONNECTED);
108 stateMap.put(DetailedState.DISCONNECTED, State.DISCONNECTED)
    [all...]
  /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
NetworkState.java 102 Log.v(LOG_TAG, "Transition to DISCONNECTED");
140 // Transition from CONNECTED -> DISCONNECTED: CONNECTED->DISCONNECTING->DISCONNECTED
151 str.append(String.format(" Last state should be DISCONNECTED, but it is %s",
160 (curState == State.DISCONNECTED))) {
162 } else if ((preState == State.DISCONNECTING) && (curState == State.DISCONNECTED)) {
164 } else if ((preState == State.DISCONNECTED) && (curState == State.DISCONNECTED)) {
184 if (mStateDepository.get(0) != State.DISCONNECTED) {
185 str.append(String.format(" Initial state should be DISCONNECTED, but it is %s."
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
GsmCdmaCallTest.java 116 // only one attached connection get disconnected, state not changed
117 doReturn(Call.State.DISCONNECTED).when(mConnection1).getState();
121 doReturn(Call.State.DISCONNECTED).when(mConnection2).getState();
123 assertEquals(Call.State.DISCONNECTED, mCallUnderTest.getState());
  /cts/tests/tests/net/src/android/net/wifi/cts/
SupplicantStateTest.java 29 assertTrue(SupplicantState.isValidState(SupplicantState.DISCONNECTED));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsExternalCall.java 70 setState(State.DISCONNECTED);
ImsPhoneCall.java 177 * Called by ImsPhoneConnection when it has disconnected
180 if (mState != State.DISCONNECTED) {
181 /* If only disconnected connections remain, we are disconnected*/
186 if (mConnections.get(i).getState() != State.DISCONNECTED) {
193 mState = State.DISCONNECTED;
330 if ((state != mState) && (state != State.DISCONNECTED)) {
333 } else if (state == State.DISCONNECTED) {
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
DdmServer.java 35 private static final int DISCONNECTED = 2;
118 case DISCONNECTED:
119 handler.disconnected();
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
ImsPhoneCallTest.java 92 // only one attached connection get disconnected, state not changed
93 doReturn(Call.State.DISCONNECTED).when(mConnection1).getState();
96 doReturn(Call.State.DISCONNECTED).when(mConnection2).getState();
98 assertEquals(Call.State.DISCONNECTED, mImsCallUT.getState());
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
CallLogManagerTest.java 170 mCallLogManager.onCallStateChanged(fakeCall, CallState.DIALING, CallState.DISCONNECTED);
194 CallState.DISCONNECTED);
222 mCallLogManager.onCallStateChanged(fakeCall, CallState.ACTIVE, CallState.DISCONNECTED);
244 CallState.DISCONNECTED);
268 CallState.DISCONNECTED);
293 CallState.DISCONNECTED);
321 CallState.DISCONNECTED);
346 mCallLogManager.onCallStateChanged(fakeCall, CallState.ACTIVE, CallState.DISCONNECTED);
371 mCallLogManager.onCallStateChanged(fakeCall, CallState.ACTIVE, CallState.DISCONNECTED);
394 mCallLogManager.onCallStateChanged(fakeCall, CallState.ACTIVE, CallState.DISCONNECTED);
    [all...]
  /frameworks/base/core/java/com/android/internal/net/
LegacyVpnInfo.java 84 case DISCONNECTED:
90 + " ; treating as disconnected");

Completed in 1523 milliseconds

1 2 3 4 5 6 7 8