Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiNotificationController.java124 NetworkInfo.DetailedState detailedState = in WifiNotificationController()
126 if (detailedState != NetworkInfo.DetailedState.SCANNING in WifiNotificationController()
127 && detailedState != mDetailedState) { in WifiNotificationController()
128 mDetailedState = detailedState; in WifiNotificationController()
DWifiStateMachine.java2774 NetworkInfo.DetailedState detailedState = info.getDetailedState(); in getLogRecString() local
2778 if (detailedState != null) { in getLogRecString()
2779 sb.append("/").append(detailedState); in getLogRecString()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DTestUtil.java51 Context context, NetworkInfo.DetailedState detailedState) { in sendNetworkStateChanged() argument
54 networkInfo.setDetailedState(detailedState, "", ""); in sendNetworkStateChanged()
/frameworks/base/core/java/android/net/
DNetworkInfo.java382 public void setDetailedState(DetailedState detailedState, String reason, String extraInfo) { in setDetailedState() argument
384 this.mDetailedState = detailedState; in setDetailedState()
385 this.mState = stateMap.get(detailedState); in setDetailedState()
/frameworks/base/services/core/java/com/android/server/connectivity/
DVpn.java244 private void updateState(DetailedState detailedState, String reason) { in updateState() argument
245 if (LOGD) Log.d(TAG, "setting state=" + detailedState + ", reason=" + reason); in updateState()
246 mNetworkInfo.setDetailedState(detailedState, reason, null); in updateState()