Searched defs:ess (Results 1 - 9 of 9) sorted by last modified time

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiServiceImpl.java1038 * @param ess set if the hold off pertains to an ESS rather than a BSS
1040 public void deauthenticateNetwork(long holdoff, boolean ess) { argument
1041 mWifiStateMachine.deauthenticateNetwork(mWifiStateMachineChannel, holdoff, ess);
H A DWifiStateMachine.java1924 * @param ess set if the hold off pertains to an ESS rather than a BSS
1926 public void deauthenticateNetwork(AsyncChannel channel, long holdoff, boolean ess) { argument
H A DWnmData.java80 private WnmData(long bssid, String url, boolean ess, int delay) { argument
83 mEss = ess;
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiManager.java149 * Boolean true=ess, false=bss
151 public static final String EXTRA_PASSPOINT_WNM_ESS = "ess";
873 * @param ess set if the hold off pertains to an ESS rather than a BSS
876 public void deauthenticateNetwork(long holdoff, boolean ess) { argument
878 mService.deauthenticateNetwork(holdoff, ess);
/frameworks/base/packages/Osu/src/com/android/
H A DMainActivity.java169 private void showDeauth(String spName, boolean ess, int delay, String url) { argument
171 if (ess) {
269 boolean ess = bundle.getBoolean(WifiManager.EXTRA_PASSPOINT_WNM_ESS);
271 mOsuManager.deauth(bssid, ess, delay, url);
/frameworks/base/packages/Osu/src/com/android/hotspot2/
H A DAppBridge.java53 public void showDeauth(String spName, boolean ess, int delay, String url) { argument
56 intent.putExtra(DEAUTH, ess);
H A DWifiNetworkAdapter.java383 * @param ess set if the hold off pertains to an ESS rather than a BSS
385 public void setHoldoffTime(long holdoff, boolean ess) { argument
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DOSUManager.java373 public void deAuthNotification(String spIdentity, boolean ess, int delay, URL url) {
374 Log.i(TAG, "De-authentication imminent for " + (ess ? "ess" : "bss") +
378 intent.putExtra(DEAUTH, ess);
672 public void deauth(long bssid, boolean ess, int delay, String url) throws MalformedURLException { argument
674 ess ? "ess" : "bss",
677 mWifiNetworkAdapter.setHoldoffTime(delay * Constants.MILLIS_IN_A_SEC, ess);
680 mAppBridge.showDeauth(spName, ess, delay, url);
H A DUserInputListener.java40 * @param ess set to indicate that the de-authentication is for an ESS instead of a BSS
45 public void deAuthNotification(String spIdentity, boolean ess, int delay, URL url); argument

Completed in 118 milliseconds