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

1 2 3

  /packages/services/Telecomm/src/com/android/server/telecom/
CallState.java 104 public static final int DISCONNECTING = 9;
135 case DISCONNECTING:
136 return "DISCONNECTING";
ParcelableCallUtils.java 219 case CallState.DISCONNECTING:
236 // 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 361 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 54 CONNECTED_BUSY, DISCONNECTING;
152 && mState != SAP_STATE.DISCONNECTING ) {
203 changeState(SAP_STATE.DISCONNECTING);
333 if(msg != null && mState != SAP_STATE.DISCONNECTING)
361 changeState(SAP_STATE.DISCONNECTING);
366 changeState(SAP_STATE.DISCONNECTING);
412 //An unknown message or in disconnecting state - send error indication
438 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 123 mApnContext.setState(DctConstants.State.DISCONNECTING);
124 assertEquals(DctConstants.State.DISCONNECTING, mApnContext.getState());
  /packages/apps/Dialer/java/com/android/incallui/contactgrid/
BottomRow.java 90 } else if (state.state == State.DISCONNECTING) {
91 // While in the DISCONNECTING state we display a "Hanging up" message in order to make the UI
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCall.java 234 mState = State.DISCONNECTING;
  /packages/apps/Dialer/java/com/android/incallui/call/
DialerCall.java 317 return DialerCall.State.DISCONNECTING;
    [all...]
CallList.java 426 return getFirstCallWithState(DialerCall.State.DISCONNECTING);
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipConnection.java 272 case DISCONNECTING:
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasClient.java 277 DISCONNECTED, CONNECTING, CONNECTED, DISCONNECTING;
637 mConnectionState = ConnectionState.DISCONNECTING;
    [all...]
  /packages/services/NetworkRecommendation/src/com/android/networkrecommendation/notify/
WifiNotificationController.java 304 case DISCONNECTING:
  /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...]
  /prebuilts/tools/common/m2/repository/com/firebase/tubesock/0.0.12/
tubesock-0.0.12.jar 
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
TelephonyMetrics.java     [all...]

Completed in 505 milliseconds

1 2 3