/aosp12/packages/modules/NetworkStack/src/com/android/networkstack/ |
H A D | NetworkStackNotifier.java | 197 if (networkStatus == null) return; in updateNotifications() 200 final boolean hasSsid = !TextUtils.isEmpty(getSsid(networkStatus)); in updateNotifications() 206 && networkStatus.isValidated() in updateNotifications() 213 networkStatus.mValidatedNotificationPending && networkStatus.isValidated() in updateNotifications() 242 ? getSsid(networkStatus) : friendlyName; in updateNotifications() 250 networkStatus.mShownNotification = NOTE_VENUE_INFO; in updateNotifications() 255 getSsid(networkStatus)) in updateNotifications() 263 networkStatus.mShownNotification = NOTE_CONNECTED; in updateNotifications() 265 if (networkStatus.mShownNotification != NOTE_NONE in updateNotifications() 269 dismissNotification(notificationTag, networkStatus); in updateNotifications() [all …]
|
/aosp12/packages/apps/Car/SystemUI/src/com/android/systemui/car/bluetooth/ |
H A D | ConnectedDeviceSignalController.java | 198 int networkStatus = intent.getIntExtra(BluetoothHeadsetClient.EXTRA_NETWORK_STATUS, in processActionAgEvent() local 200 if (networkStatus != INVALID_SIGNAL) { in processActionAgEvent() 202 Log.d(TAG, "EXTRA_NETWORK_STATUS: " + " " + networkStatus); in processActionAgEvent() 205 if (networkStatus == NETWORK_UNAVAILABLE) { in processActionAgEvent()
|
/aosp12/packages/apps/WallpaperPicker2/tests/src/com/android/wallpaper/testing/ |
H A D | TestNetworkStatusNotifier.java | 55 public void setAndNotifyNetworkStatus(@NetworkStatus int networkStatus) { in setAndNotifyNetworkStatus() argument 56 mNetworkStatus = networkStatus; in setAndNotifyNetworkStatus()
|
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/ |
H A D | WifiBlocklistMonitor.java | 953 NetworkSelectionStatus networkStatus = config.getNetworkSelectionStatus(); in shouldEnableNetwork() local 954 if (networkStatus.isNetworkTemporaryDisabled()) { in shouldEnableNetwork() 956 mClock.getElapsedSinceBootMillis() - networkStatus.getDisableTime(); in shouldEnableNetwork() 957 int disableReason = networkStatus.getNetworkSelectionDisableReason(); in shouldEnableNetwork() 990 NetworkSelectionStatus networkStatus = config.getNetworkSelectionStatus(); in updateNetworkSelectionStatus() local 1007 networkStatus.incrementDisableReasonCounter(reason); in updateNetworkSelectionStatus() 1010 int disableReasonCounter = networkStatus.getDisableReasonCounter(reason); in updateNetworkSelectionStatus() 1017 + " is " + networkStatus.getDisableReasonCounter(reason) in updateNetworkSelectionStatus() 1039 NetworkSelectionStatus networkStatus = config.getNetworkSelectionStatus(); in setNetworkSelectionStatus() local 1049 + " networkStatus=" + networkStatus.getNetworkStatusString() + " disableReason=" in setNetworkSelectionStatus() [all …]
|
/aosp12/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/ |
H A D | DefaultNetworkStatusNotifier.java | 64 @NetworkStatus int networkStatus = getNetworkStatus(); in registerListener() 66 mListeners.get(i).onNetworkChanged(networkStatus); in registerListener()
|
/aosp12/packages/apps/Car/Settings/src/com/android/car/settings/wifi/ |
H A D | WifiUtil.java | 332 WifiConfiguration.NetworkSelectionStatus networkStatus = in isWifiEntryDisabledByWrongPassword() local 334 if (networkStatus == null in isWifiEntryDisabledByWrongPassword() 335 || networkStatus.getNetworkSelectionStatus() == NETWORK_SELECTION_ENABLED) { in isWifiEntryDisabledByWrongPassword() 338 return networkStatus.getNetworkSelectionDisableReason() in isWifiEntryDisabledByWrongPassword()
|
/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/ |
H A D | WifiUtils.java | 103 NetworkSelectionStatus networkStatus = config.getNetworkSelectionStatus(); in buildLoggingSummary() local 105 if (networkStatus.getDisableReasonCounter(reason) != 0) { in buildLoggingSummary() 110 .append(networkStatus.getDisableReasonCounter(reason)); in buildLoggingSummary()
|
H A D | AccessPoint.java | 1188 WifiConfiguration.NetworkSelectionStatus networkStatus = in getSettingsSummary() local 1190 switch (networkStatus.getNetworkSelectionDisableReason()) { in getSettingsSummary()
|
/aosp12/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/ |
H A D | WifiConnectionActivity.java | 202 WifiConfiguration.NetworkSelectionStatus networkStatus = in onCreate() local 204 if (networkStatus.getNetworkSelectionDisableReason() in onCreate()
|
/aosp12/packages/apps/Settings/src/com/android/settings/wifi/ |
H A D | WifiSettings.java | 1170 WifiConfiguration.NetworkSelectionStatus networkStatus = in isDisabledByWrongPassword() local 1172 if (networkStatus == null in isDisabledByWrongPassword() 1173 || networkStatus.getNetworkSelectionStatus() == NETWORK_SELECTION_ENABLED) { in isDisabledByWrongPassword() 1176 int reason = networkStatus.getNetworkSelectionDisableReason(); in isDisabledByWrongPassword()
|
/aosp12/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/ |
H A D | TopLevelPickerActivity.java | 369 public void onNetworkChanged(@NetworkStatus int networkStatus) { in initializeDesktop() 370 initializeDesktopBasedOnNetwork(networkStatus, savedInstanceState); in initializeDesktop() 378 private void initializeDesktopBasedOnNetwork(@NetworkStatus int networkStatus, in initializeDesktopBasedOnNetwork() argument 380 if (networkStatus == NetworkStatusNotifier.NETWORK_CONNECTED) { in initializeDesktopBasedOnNetwork()
|
/aosp12/packages/apps/Settings/src/com/android/settings/network/ |
H A D | NetworkProviderSettings.java | 1281 WifiConfiguration.NetworkSelectionStatus networkStatus = in isDisabledByWrongPassword() local 1283 if (networkStatus == null in isDisabledByWrongPassword() 1284 || networkStatus.getNetworkSelectionStatus() == NETWORK_SELECTION_ENABLED) { in isDisabledByWrongPassword() 1287 int reason = networkStatus.getNetworkSelectionDisableReason(); in isDisabledByWrongPassword()
|
/aosp12/packages/modules/Connectivity/framework/src/android/net/ |
H A D | NetworkAgent.java | 1073 networkStatus(status, null == redirectUri ? "" : redirectUri.toString()); in onValidationStatus() 1076 protected void networkStatus(int status, String redirectUrl) { in networkStatus() method in NetworkAgent
|
/aosp12/frameworks/opt/net/wifi/libs/WifiTrackerLib/src/com/android/wifitrackerlib/ |
H A D | Utils.java | 440 WifiConfiguration.NetworkSelectionStatus networkStatus = in getWifiConfigurationFailureMessage() local 442 switch (networkStatus.getNetworkSelectionDisableReason()) { in getWifiConfigurationFailureMessage()
|
/aosp12/packages/modules/Connectivity/Tethering/apex/hiddenapi/ |
H A D | hiddenapi-max-target-o-low-priority.txt | 552 Landroid/net/NetworkAgent;->networkStatus(ILjava/lang/String;)V
|
/aosp12/packages/modules/Connectivity/tests/unit/java/com/android/server/ |
H A D | ConnectivityServiceTest.java | 859 public void networkStatus(int status, String redirectUrl) { in makeNetworkAgent()
|