OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WifiKey
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/core/java/android/net/
WifiKey.java
33
public class
WifiKey
implements Parcelable {
56
* Construct a new {@link
WifiKey
} for the given Wi-Fi SSID/BSSID pair.
66
public
WifiKey
(String ssid, String bssid) {
77
private
WifiKey
(Parcel in) {
98
WifiKey
wifiKey
= (
WifiKey
) o;
100
return Objects.equals(ssid,
wifiKey
.ssid) && Objects.equals(bssid,
wifiKey
.bssid);
110
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/
WifiQualifiedNetworkSelector.java
23
import android.net.
WifiKey
;
691
WifiKey
wifiKey
;
694
wifiKey
= new
WifiKey
("\"" + scanResult.SSID + "\"", scanResult.BSSID);
695
NetworkKey ntwkKey = new NetworkKey(
wifiKey
);
[
all
...]
/frameworks/base/
compiled-classes-phone
[
all
...]
/prebuilts/sdk/system_current/
android.jar
Completed in 6990 milliseconds