HomeSort by relevance Sort by last modified time
    Searched refs:WifiKey (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/net/
WifiKey.java 33 public class WifiKey implements Parcelable {
55 * Construct a new {@link WifiKey} for the given Wi-Fi SSID/BSSID pair.
65 public WifiKey(String ssid, String bssid) {
76 private WifiKey(Parcel in) {
97 WifiKey wifiKey = (WifiKey) o;
99 return Objects.equals(ssid, wifiKey.ssid) && Objects.equals(bssid, wifiKey.bssid);
109 return "WifiKey[SSID=" + ssid + ",BSSID=" + bssid + "]"
    [all...]
NetworkKey.java 39 /** A wifi network, for which {@link #wifiKey} will be populated. */
52 public final WifiKey wifiKey;
56 * @param wifiKey the {@link WifiKey} identifying this Wi-Fi network.
58 public NetworkKey(WifiKey wifiKey) {
60 this.wifiKey = wifiKey;
67 wifiKey = WifiKey.CREATOR.createFromParcel(in)
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiAutoJoinController.java 22 import android.net.WifiKey;
197 WifiKey wkey;
200 wkey = new WifiKey("\"" + result.SSID + "\"", result.BSSID);
    [all...]

Completed in 94 milliseconds