HomeSort by relevance Sort by last modified time
    Searched refs:networkId (Results 1 - 25 of 55) sorted by null

1 2 3

  /frameworks/base/wifi/java/android/net/wifi/
StateChangeResult.java 26 StateChangeResult(int networkId, WifiSsid wifiSsid, String BSSID,
31 this.networkId = networkId;
34 int networkId;
SupplicantStateTracker.java 236 stateChangeResult.networkId);
237 handleNetworkConnectionFailure(stateChangeResult.networkId,
243 stateChangeResult.networkId);
244 handleNetworkConnectionFailure(stateChangeResult.networkId,
286 stateChangeResult.networkId);
287 handleNetworkConnectionFailure(stateChangeResult.networkId,
WifiConfiguration.java 184 public int networkId;
330 networkId = INVALID_NETWORK_ID;
382 sbuf.append("ID: ").append(this.networkId).append(" SSID: ").append(this.SSID).
467 networkId = -1;
581 networkId = source.networkId;
612 dest.writeInt(networkId);
643 config.networkId = in.readInt();
WifiMonitor.java     [all...]
WifiConfigStore.java 224 if(mWifiNative.enableNetwork(config.networkId, false)) {
228 loge("Enable network failed on " + config.networkId);
259 if (config.networkId != INVALID_NETWORK_ID) {
269 config.networkId = netId;
290 if (VDBG) localLog("saveNetwork", config.networkId);
292 if (config == null || (config.networkId == INVALID_NETWORK_ID &&
297 boolean newNetwork = (config.networkId == INVALID_NETWORK_ID);
360 if (VDBG) localLog("addOrUpdateNetwork", config.networkId);
449 if(mWifiNative.disableNetwork(config.networkId)) {
453 loge("Disable network failed on " + config.networkId);
    [all...]
WifiManager.java 571 * <li>networkId</li>
595 * The {@code networkId} field of the supplied configuration object
611 config.networkId = -1;
621 * are non-<code>null</code>. The {@code networkId} field
623 * @return Returns the {@code networkId} of the supplied
626 * Returns {@code -1} on failure, including when the {@code networkId}
631 if (config == null || config.networkId < 0) {
    [all...]
  /frameworks/base/core/java/android/net/
NetworkState.java 34 public final String networkId;
42 LinkCapabilities linkCapabilities, String subscriberId, String networkId) {
47 this.networkId = networkId;
55 networkId = in.readString();
69 out.writeString(networkId);
NetworkIdentity.java 53 int type, int subType, String subscriberId, String networkId, boolean roaming) {
57 mNetworkId = networkId;
93 builder.append(", networkId=").append(mNetworkId);
147 String networkId = null;
161 if (state.networkId != null) {
162 networkId = state.networkId;
167 networkId = info != null ? info.getSSID() : null;
171 return new NetworkIdentity(type, subType, subscriberId, networkId, roaming);