HomeSort by relevance Sort by last modified time
    Searched defs:networkKey (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/net/
ScoredNetwork.java 33 /** A {@link NetworkKey} uniquely identifying this network. */
34 public final NetworkKey networkKey;
48 * @param networkKey the {@link NetworkKey} uniquely identifying this network.
52 * not returning any {@link ScoredNetwork} for a given {@link NetworkKey} because it
56 public ScoredNetwork(NetworkKey networkKey, RssiCurve rssiCurve) {
57 this.networkKey = networkKey;
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiNetworkScoreCache.java 22 import android.net.NetworkKey;
63 String networkKey = buildNetworkKey(network);
64 if (networkKey == null) continue;
65 mNetworkCache.put(networkKey, network);
105 Log.e(TAG, "getNetworkScore found scored network " + network.networkKey
121 Log.e(TAG, "getNetworkScore found scored network " + network.networkKey
142 if (network.networkKey == null) return null;
143 if (network.networkKey.wifiKey == null) return null;
144 if (network.networkKey.type == NetworkKey.TYPE_WIFI)
    [all...]

Completed in 904 milliseconds