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

1 2

  /packages/services/Telecomm/src/com/android/server/telecom/
CallState.java 104 public static final int DISCONNECTING = 9;
126 case DISCONNECTING:
127 return "DISCONNECTING";
ParcelableCallUtils.java 160 case CallState.DISCONNECTING:
177 // If we are marked as 'locally disconnecting' then mark ourselves as disconnecting instead.
  /cts/tests/tests/net/src/android/net/cts/
NetworkInfo_StateTest.java 28 assertEquals(State.DISCONNECTING, State.valueOf("DISCONNECTING"));
39 assertEquals(State.DISCONNECTING, expected[3]);
NetworkInfo_DetailedStateTest.java 30 assertEquals(DetailedState.DISCONNECTING, DetailedState.valueOf("DISCONNECTING"));
48 assertEquals(DetailedState.DISCONNECTING, expected[7]);
  /external/autotest/client/cros/cellular/
cellular.py 108 # TODO(rochberg): Do we need connecting/disconnecting for this level of test?
114 'DISCONNECTING',
126 UeGsmDataStatus.PDP_DEACTIVATING: UeGenericDataStatus.DISCONNECTING,
132 UeEvdoDataStatus.CONNECTION_CLOSING: UeGenericDataStatus.DISCONNECTING,
140 UeEvdoDataStatus.SESSION_CLOSING: UeGenericDataStatus.DISCONNECTING,
149 UeLteDataStatus.RELEASE: UeGenericDataStatus.DISCONNECTING,
cell_tools.py 117 cellular.UeGenericDataStatus.DISCONNECTING,
  /frameworks/base/core/java/android/net/
NetworkInfo.java 45 * <tr><td><code>DISCONNECTING</code></td><td><code>DISCONNECTING</code></td></tr>
52 CONNECTING, CONNECTED, SUSPENDED, DISCONNECTING, DISCONNECTED, UNKNOWN
76 DISCONNECTING,
107 stateMap.put(DetailedState.DISCONNECTING, State.DISCONNECTING);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Call.java 35 IDLE, ACTIVE, HOLDING, DIALING, ALERTING, INCOMING, WAITING, DISCONNECTED, DISCONNECTING;
38 return !(this == IDLE || this == DISCONNECTED || this == DISCONNECTING);
GsmCdmaCall.java 150 mState = State.DISCONNECTING;
DefaultPhoneNotifier.java 408 case DISCONNECTING:
  /frameworks/base/telephony/java/com/android/internal/telephony/
DctConstants.java 30 * DISCONNECTING: Connection.disconnect() has been called, but PDP
38 * CONNECTED : CONNECTED or DISCONNECTING
45 DISCONNECTING,
  /external/autotest/client/site_tests/network_3GDormancyDance/
network_3GDormancyDance.py 23 DISCONNECTING = 4
60 print 'Disconnecting...'
61 self.state = State.DISCONNECTING
135 if self.state != State.DISCONNECTING:
137 'Disconnected while not in state Disconnecting')
  /packages/apps/Bluetooth/src/com/android/bluetooth/sap/
SapServer.java 58 CONNECTED_BUSY, DISCONNECTING;
156 && mState != SAP_STATE.DISCONNECTING ) {
207 changeState(SAP_STATE.DISCONNECTING);
328 if(msg != null && mState != SAP_STATE.DISCONNECTING)
356 changeState(SAP_STATE.DISCONNECTING);
361 changeState(SAP_STATE.DISCONNECTING);
407 //An unknown message or in disconnecting state - send error indication
433 if(mState != SAP_STATE.DISCONNECTING &&
    [all...]
  /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
NetworkState.java 140 // Transition from CONNECTED -> DISCONNECTED: CONNECTED->DISCONNECTING->DISCONNECTED
159 if ((preState == State.CONNECTED) && ((curState == State.DISCONNECTING) ||
162 } else if ((preState == State.DISCONNECTING) && (curState == State.DISCONNECTED)) {
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
ApnContextTest.java 121 mApnContext.setState(DctConstants.State.DISCONNECTING);
122 assertEquals(DctConstants.State.DISCONNECTING, mApnContext.getState());
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
Call.java 63 public static final int DISCONNECTING = 9; /* A call is being ended. */
111 case DISCONNECTING:
112 return "DISCONNECTING";
601 return Call.State.DISCONNECTING;
    [all...]
CallList.java 314 return getFirstCallWithState(Call.State.DISCONNECTING);
CallCardPresenter.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCall.java 230 mState = State.DISCONNECTING;
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipConnection.java 259 case DISCONNECTING:
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasClient.java 277 DISCONNECTED, CONNECTING, CONNECTED, DISCONNECTING;
637 mConnectionState = ConnectionState.DISCONNECTING;
    [all...]
  /packages/services/Car/bluetooth/bt-map-service/src/com/google/android/auto/mapservice/
BluetoothMapService.java 91 private static final int DISCONNECTING = 0;
183 if (connStatus == DISCONNECTED || connStatus == DISCONNECTING) {
496 Log.d(TAG, "Binder died, disconnecting ...");
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
BluetoothPbapClient.java 375 DISCONNECTED, CONNECTING, CONNECTED, DISCONNECTING;
    [all...]
PbapPCEClient.java 105 case DISCONNECTING:
252 Log.w(TAG, "pbap disconnecting from = " + device);
262 " disconnecting device = " + device);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 417 case SipSession.State.OUTGOING_CALL_CANCELING: return Call.State.DISCONNECTING;
523 setState(State.DISCONNECTING);
    [all...]

Completed in 781 milliseconds

1 2