/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/ |
ConnectivityManagerMobileTest.java | 98 // assert that WiFi state settles at disconnected since no AP should be configured 99 assertTrue("WiFi state is not DISCONNECTED after enabling", waitForWifiState( 128 // assertTrue("mobile not disconnected", waitForNetworkState( 129 // ConnectivityManager.TYPE_MOBILE, State.DISCONNECTED, LONG_TIMEOUT)); 156 // assertTrue("wifi not disconnected", waitForNetworkState(ConnectivityManager.TYPE_WIFI, 157 // State.DISCONNECTED, LONG_TIMEOUT)); 170 // Wait for Wifi to be connected and mobile to be disconnected 175 // assertTrue("mobile not disconnected after wifi toggle", waitForNetworkState( 176 // ConnectivityManager.TYPE_MOBILE, State.DISCONNECTED, LONG_TIMEOUT)); 320 // Verify the connectivity state for Wifi is DISCONNECTED [all...] |
/developers/demos/MusicDemo/src/main/java/com/example/android/musicservicedemo/ |
CarConnectionReceiver.java | 32 private static final String DISCONNECTED_ACTION = "com.google.android.gms.car.DISCONNECTED"; 39 LogHelper.i(TAG, "Device is disconnected from Android Auto");
|
/development/samples/BluetoothHDP/res/values/ |
strings.xml | 29 <string name="disconnected">DISCONNECTED</string>
|
/external/chromium_org/chrome/test/chromedriver/chrome/ |
devtools_client.h | 32 // Connect to DevTools if the DevToolsClient is disconnected. 42 // Adds a listener. This must only be done when the client is disconnected.
|
/external/chromium_org/remoting/host/ |
desktop_session_connector.h | 26 // disconnected from the desktop session (see DisconnectTerminal()) before it 52 // Notifies the network process that the daemon has disconnected the desktop
|
signaling_connector.cc | 59 } else if (state == SignalStrategy::DISCONNECTED) { 60 HOST_LOG << "Signaling disconnected."; 82 signal_strategy_->GetState() == SignalStrategy::DISCONNECTED) { 90 if (signal_strategy_->GetState() == SignalStrategy::DISCONNECTED) { 116 DCHECK_EQ(signal_strategy_->GetState(), SignalStrategy::DISCONNECTED); 169 if (signal_strategy_->GetState() == SignalStrategy::DISCONNECTED) {
|
/external/chromium_org/components/sync_driver/ |
shared_change_processor.h | 60 // Note: If this SharedChangeProcessor has been disconnected, or the 74 // Note: Once disconnected, you cannot reconnect without creating a new 77 // already disconnected. 114 // processor must aquire this lock and check whether we're disconnected or 115 // not. Once disconnected, all attempted changes to or loads from the change 125 // destructed and/or disconnected on this loop, see ~SharedChangeProcessor.
|
/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/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...] |
/packages/apps/InCallUI/src/com/android/incallui/ |
CallList.java | 86 call.setState(Call.State.DISCONNECTED); 89 Log.w(this, "Removing call not previously disconnected " + call.getId()); 242 return getFirstCallWithState(Call.State.DISCONNECTED); 364 state != Call.State.DISCONNECTED) { 366 call.setState(Call.State.DISCONNECTED); 413 if (call.getState() == Call.State.DISCONNECTED) { 414 // update existing (but do not add!!) disconnected calls 417 // For disconnected calls, we want to keep them alive for a few seconds so that the 418 // UI has a chance to display anything it needs when a call is disconnected. 442 Preconditions.checkState(call.getState() == Call.State.DISCONNECTED); [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/ |
A2dpSinkStateMachine.java | 19 * (Disconnected) 21 * CONNECT | | DISCONNECTED 71 private Disconnected mDisconnected; 92 // No connection, Disconnected state 125 mDisconnected = new Disconnected(); 159 private class Disconnected extends State { 162 log("Enter Disconnected: " + getCurrentMessage().what); 167 log("Disconnected process message: " + message.what); 169 loge("ERROR: current, target, or mIncomingDevice not null in Disconnected"); 219 log("Exit Disconnected: " + getCurrentMessage().what) [all...] |
A2dpStateMachine.java | 19 * (Disconnected) 21 * CONNECT | | DISCONNECTED 68 private Disconnected mDisconnected; 89 // No connection, Disconnected state 121 mDisconnected = new Disconnected(); 155 private class Disconnected extends State { 158 log("Enter Disconnected: " + getCurrentMessage().what); 163 log("Disconnected process message: " + message.what); 165 loge("ERROR: current, target, or mIncomingDevice not null in Disconnected"); 212 log("Exit Disconnected: " + getCurrentMessage().what) [all...] |
/external/bluetooth/bluedroid/stack/smp/ |
smp_l2c.c | 74 ** connected (conn = TRUE)/disconnected (conn = FALSE). 95 (bd_addr[4]<<8)+bd_addr[5], (connected) ? "connected" : "disconnected"); 115 /* Disconnected while doing security */
|
/external/chromium_org/content/renderer/media/webrtc/ |
media_stream_track_metrics.h | 40 enum LifetimeEvent { CONNECTED, DISCONNECTED }; 52 // the connected/disconnected lifetime events for these tracks. 60 // disconnected.
|
media_stream_track_metrics.cc | 113 SendLifetimeMessages(MediaStreamTrackMetrics::DISCONNECTED); 126 DCHECK(event == MediaStreamTrackMetrics::DISCONNECTED); 139 if (event == MediaStreamTrackMetrics::DISCONNECTED) { 183 removed_tracks, track_type, MediaStreamTrackMetrics::DISCONNECTED); 201 (*it)->SendLifetimeMessages(DISCONNECTED); 263 observer->SendLifetimeMessages(DISCONNECTED); 268 // involved in a transition from connected to disconnected or 289 DCHECK_EQ(DISCONNECTED, event);
|
/external/chromium_org/net/socket/ |
socket.h | 29 // closed. If the socket is Disconnected before the read completes, the 45 // Disconnected before the write completes, the callback will not be invoked.
|
/external/chromium_org/remoting/jingle_glue/ |
signal_strategy.h | 30 DISCONNECTED, 47 // is DISCONNECTED, then GetError() can be used to get the reason
|
/frameworks/base/core/java/com/android/internal/net/ |
LegacyVpnInfo.java | 84 case DISCONNECTED: 90 + " ; treating as disconnected");
|
/frameworks/ml/bordeaux/service/res/values/ |
strings.xml | 38 <string name="local_service_disconnected">Disconnected from local service</string> 54 <string name="remote_service_disconnected">Disconnected from remote service</string>
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
InCallToneMonitor.java | 45 if (newState == CallState.DISCONNECTED && call.getDisconnectCause() != null) { 74 Log.d(this, "Found a disconnected call with tone to play %d.", toneToPlay);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
P2pBroadcastReceiverTest.java | 143 * Wait until a station gets disconnected. 176 * Wait until a connection is disconnected. 179 * @return a disconnected p2p information. Return null if a connection is NOT disconnected
|
/cts/tests/tests/net/src/android/net/wifi/cts/ |
SupplicantStateTest.java | 29 assertTrue(SupplicantState.isValidState(SupplicantState.DISCONNECTED));
|
/developers/samples/android/wearable/wear/AgendaData/Application/src/main/java/com/example/android/agendadata/ |
MainActivity.java | 111 + " - Client disconnected from Google Play Services"); 140 + " - Client disconnected from Google Play Services"); 162 appendLog("Device disconnected"); 182 Log.d(TAG, "Disconnected from Google Api Service");
|
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/ |
ChatManager.java | 54 Log.e(TAG, "disconnected", e);
|
/development/samples/wearable/AgendaData/Application/src/main/java/com/example/android/wearable/agendadata/ |
MainActivity.java | 111 + " - Client disconnected from Google Play Services"); 140 + " - Client disconnected from Google Play Services"); 162 appendLog("Device disconnected"); 182 Log.d(TAG, "Disconnected from Google Api Service");
|