Home
last modified time | relevance | path

Searched refs:connectionType (Results 1 – 5 of 5) sorted by relevance

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowNetworkInfo.java19 private int connectionType; field in ShadowNetworkInfo
67 return connectionType; in getType()
106 public void setConnectionType(int connectionType){ in setConnectionType() argument
107 this.connectionType = connectionType; in setConnectionType()
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
DNetworkMonitor.java51 public void onConnectionTypeChanged(ConnectionType connectionType); in onConnectionTypeChanged() argument
210 ConnectionType connectionType = getInstance().getCurrentConnectionType(); in isOnline() local
211 return connectionType != ConnectionType.CONNECTION_UNKNOWN in isOnline()
212 && connectionType != ConnectionType.CONNECTION_NONE; in isOnline()
DNetworkMonitorAutoDetect.java272 private ConnectionType connectionType; field in NetworkMonitorAutoDetect
295 connectionType = getCurrentConnectionType(networkState); in NetworkMonitorAutoDetect()
424 if (newConnectionType == connectionType && newWifiSSID.equals(wifiSSID)) return; in connectionTypeChanged()
426 connectionType = newConnectionType; in connectionTypeChanged()
428 Log.d(TAG, "Network connectivity changed, type is: " + connectionType); in connectionTypeChanged()
/external/apache-http/android/src/android/net/http/
DHeaders.java122 private int connectionType; field in Headers
155 connectionType = NO_CONN_TYPE; in Headers()
318 return connectionType; in getConnectionType()
461 connectionType = CONN_CLOSE; in setConnectionType()
464 connectionType = CONN_KEEP_ALIVE; in setConnectionType()
/external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
DNetworkMonitorTest.java62 public void onConnectionTypeChanged(ConnectionType connectionType) { in onConnectionTypeChanged() argument