Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 47e9400f authored by Ningyuan Wang's avatar Ningyuan Wang
Browse files

Fix confusing javadoc for WifiManager.EXTRA_RESULTS_UPDATED

This rephrases the javadoc for WifiManager.EXTRA_RESULTS_UPDATE
and WifiManager.SCAN_RESULTS_AVAILABLE_ACTION, explaining the
meaning of WifiManager.EXTRA_RESULTS_UPDATED in a better way.
This also removes "supplicant" keyword in this javadoc because
we no longer use supplicant for scan.

Bug: 62273016
Test: compile
Change-Id: Ib8ce2d6e8aaf70819c9e2622fb5acfcc14a0d593
parent 209705d5
Loading
Loading
Loading
Loading
+17 −5
Original line number Original line Diff line number Diff line
@@ -675,16 +675,28 @@ public class WifiManager {
    @SystemApi
    @SystemApi
    public static final int CHANGE_REASON_CONFIG_CHANGE = 2;
    public static final int CHANGE_REASON_CONFIG_CHANGE = 2;
    /**
    /**
     * An access point scan has completed, and results are available from the supplicant.
     * An access point scan has completed, and results are available.
     * Call {@link #getScanResults()} to obtain the results. {@link #EXTRA_RESULTS_UPDATED}
     * Call {@link #getScanResults()} to obtain the results.
     * indicates if the scan was completed successfully.
     * The broadcast intent may contain an extra field with the key {@link #EXTRA_RESULTS_UPDATED}
     * and a {@code boolean} value indicating if the scan was successful.
     */
     */
    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
    public static final String SCAN_RESULTS_AVAILABLE_ACTION = "android.net.wifi.SCAN_RESULTS";
    public static final String SCAN_RESULTS_AVAILABLE_ACTION = "android.net.wifi.SCAN_RESULTS";


    /**
    /**
     * Lookup key for a {@code boolean} representing the result of previous {@link #startScan}
     * Lookup key for a {@code boolean} extra in intent {@link #SCAN_RESULTS_AVAILABLE_ACTION}
     * operation, reported with {@link #SCAN_RESULTS_AVAILABLE_ACTION}.
     * representing if the scan was successful or not.
     * Scans may fail for multiple reasons, these may include:
     * <ol>
     * <li>A non-privileged app requested too many scans in a certain period of time.
     * This may lead to additional scan request rejections via "scan throttling".
     * See
     * <a href="https://developer.android.com/preview/features/background-location-limits.html">
     * here</a> for details.
     * </li>
     * <li>The device is idle and scanning is disabled.</li>
     * <li>Wifi hardware reported a scan failure.</li>
     * </ol>
     * @return true scan was successful, results are updated
     * @return true scan was successful, results are updated
     * @return false scan was not successful, results haven't been updated since previous scan
     * @return false scan was not successful, results haven't been updated since previous scan
     */
     */