Searched refs:isConnected (Results 1 - 25 of 92) sorted by path

1234

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothDevice.java998 public boolean isConnected() { method in class:BluetoothDevice
H A DBluetoothMap.java194 public boolean isConnected(BluetoothDevice device) { method in class:BluetoothMap
195 if (VDBG) log("isConnected(" + device + ")");
198 return mService.isConnected(device);
H A DBluetoothPbap.java250 public boolean isConnected(BluetoothDevice device) { method in class:BluetoothPbap
251 if (VDBG) log("isConnected(" + device + ")");
254 return mService.isConnected(device);
H A DBluetoothSap.java235 public boolean isConnected(BluetoothDevice device) { method in class:BluetoothSap
236 if (VDBG) log("isConnected(" + device + ")");
239 return mService.isConnected(device);
H A DBluetoothSocket.java329 public boolean isConnected() { method in class:BluetoothSocket
H A DIBluetoothMap.aidl31 boolean isConnected(in BluetoothDevice device);
H A DIBluetoothPbap.aidl31 boolean isConnected(in BluetoothDevice device);
H A DIBluetoothSap.aidl31 boolean isConnected(in BluetoothDevice device);
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiHotplugEvent.java60 public boolean isConnected() { method in class:HdmiHotplugEvent
/frameworks/base/core/java/android/hardware/usb/
H A DUsbPortStatus.java50 public boolean isConnected() { method in class:UsbPortStatus
105 return "UsbPortStatus{connected=" + isConnected()
/frameworks/base/core/java/android/net/
H A DLocalSocket.java37 private boolean isConnected; field in class:LocalSocket
65 isConnected = false;
75 isConnected = true;
85 this.isConnected = false;
126 if (isConnected) {
132 isConnected = true;
250 public synchronized boolean isConnected() { method in class:LocalSocket
251 return isConnected;
H A DNetworkInfo.java230 * For the latter, call {@link #isConnected()} instead, which guarantees
247 public boolean isConnected() { method in class:NetworkInfo
/frameworks/base/core/java/android/nfc/tech/
H A DBasicTagTechnology.java57 public boolean isConnected() { method in class:BasicTagTechnology
H A DTagTechnology.java220 public boolean isConnected(); method in interface:TagTechnology
/frameworks/base/core/java/android/service/notification/
H A DNotificationListenerService.java183 private boolean isConnected = false; field in class:NotificationListenerService
819 isConnected = false;
933 isConnected = true;
1432 if (!isConnected) {
/frameworks/base/core/java/android/util/
H A DNtpTrustedTime.java96 if (ni == null || !ni.isConnected()) {
/frameworks/base/core/java/android/widget/
H A DRemoteViewsAdapter.java282 public synchronized boolean isConnected() { method in class:RemoteViewsAdapter.RemoteViewsAdapterServiceConnection
896 if (mServiceConnection.isConnected()) {
1089 boolean isConnected = mServiceConnection.isConnected();
1096 if (!isInCache && !isConnected) {
1240 if (!mServiceConnection.isConnected()) {
1263 if (mServiceConnection.isConnected()) {
1282 if (!mServiceConnection.isConnected()) {
1288 return mServiceConnection.isConnected();
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DConnectivityManagerTestBase.java424 if (ni != null && ni.isConnected()) {
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
H A DConnectivityManagerMobileTest.java335 assertTrue("not connected to cellular network", extraNetInfo.isConnected());
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/unit/
H A DWifiClientTest.java253 assertTrue(mNetworkInfo.isConnected());
262 assertTrue(!mNetworkInfo.isConnected());
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
H A DConnectionUtil.java519 return networkInfo.isConnected();
528 return networkInfo.isConnected();
/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerBaseTest.java229 Log.i(LOG_TAG, "WiFi Connection state is currently: " + info.isConnected());
230 return info.isConnected();
/frameworks/base/core/tests/coretests/src/android/net/
H A DNetworkTest.java72 assertTrue(mDgramSocket.isConnected());
93 assertTrue(mLocalClient.isConnected());
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
H A DDownloadManagerBaseTest.java107 Log.i(LOG_TAG, "WiFi Connection state is currently: " + info.isConnected());
108 return info.isConnected();
/frameworks/base/media/java/android/media/
H A DMediaScannerConnection.java150 public synchronized boolean isConnected() { method in class:MediaScannerConnection

Completed in 621 milliseconds

1234