Searched defs:networkId (Results 1 - 11 of 11) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DStateChangeResult.java29 StateChangeResult(int networkId, WifiSsid wifiSsid, String BSSID, argument
34 this.networkId = networkId;
37 int networkId; field in class:StateChangeResult
48 sb.append(" nid: ").append(networkId);
H A DWifiMonitor.java1216 data.networkId = Integer.parseInt(match.group(1));
1245 int networkId = -1;
1266 networkId = value;
1284 notifySupplicantStateChange(networkId, wifiSsid, BSSID, newSupplicantState);
1289 int networkId = -1;
1301 networkId = Integer.parseInt(match.group(2));
1303 networkId = -1;
1306 notifyNetworkStateChange(newState, BSSID, networkId, reason);
1357 * @param networkId the configured network on which the state change occurred
1362 void notifySupplicantStateChange(int networkId, WifiSsi argument
[all...]
H A DWifiStateMachine.java786 int networkId; field in class:WifiStateMachine.SimAuthRequestData
2195 * @param networkId id of the network to be removed
2197 public boolean syncRemoveNetwork(AsyncChannel channel, int networkId) { argument
2198 Message resultMsg = channel.sendMessageSynchronously(CMD_REMOVE_NETWORK, networkId);
2556 sb.append(" nid=").append(lastSavedConfigurationAttempt.networkId);
2581 sb.append(" nid=").append(lastForgetConfigurationAttempt.networkId);
4276 mWifiInfo.setNetworkId(stateChangeResult.networkId);
6385 if (config.networkId == mLastNetworkId) {
6425 mWifiConfigStore.handleSSIDStateChange(targetWificonfiguration.networkId,
6580 config.networkId
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkState.java34 public final String networkId; field in class:NetworkState
38 String networkId) {
44 this.networkId = networkId;
53 networkId = in.readString();
68 out.writeString(networkId);
36 NetworkState(NetworkInfo networkInfo, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, Network network, String subscriberId, String networkId) argument
H A DNetworkIdentity.java60 int type, int subType, String subscriberId, String networkId, boolean roaming) {
64 mNetworkId = networkId;
100 builder.append(", networkId=").append(mNetworkId);
163 String networkId = null;
175 if (state.networkId != null) {
176 networkId = state.networkId;
181 networkId = info != null ? info.getSSID() : null;
185 return new NetworkIdentity(type, subType, subscriberId, networkId, roaming);
59 NetworkIdentity( int type, int subType, String subscriberId, String networkId, boolean roaming) argument
H A DNetworkTemplate.java130 public static NetworkTemplate buildTemplateWifi(String networkId) { argument
131 return new NetworkTemplate(MATCH_WIFI, null, networkId);
165 public NetworkTemplate(int matchRule, String subscriberId, String networkId) { argument
166 this(matchRule, subscriberId, new String[] { subscriberId }, networkId);
170 String networkId) {
174 mNetworkId = networkId;
210 builder.append(", networkId=").append(mNetworkId);
169 NetworkTemplate(int matchRule, String subscriberId, String[] matchSubscriberIds, String networkId) argument
/frameworks/base/telephony/java/android/telephony/cdma/
H A DCdmaCellLocation.java73 this.mNetworkId = bundle.getInt("networkId", mNetworkId);
149 int baseStationLongitude, int systemId, int networkId) {
155 this.mNetworkId = networkId;
216 bundleToFill.putInt("networkId", this.mNetworkId);
148 setCellLocationData(int baseStationId, int baseStationLatitude, int baseStationLongitude, int systemId, int networkId) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DNetworkController.java64 public int networkId; field in class:NetworkController.AccessPointController.AccessPoint
/frameworks/base/telephony/java/android/telephony/
H A DServiceState.java925 mNetworkId = m.getInt("networkId");
953 m.putInt("networkId", mNetworkId);
977 public void setSystemAndNetworkId(int systemId, int networkId) { argument
979 this.mNetworkId = networkId;
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java200 public int networkId; field in class:WifiConfiguration
861 networkId = INVALID_NETWORK_ID;
1044 sbuf.append("ID: ").append(this.networkId).append(" SSID: ").append(this.SSID).
1266 networkId = -1;
1494 networkId = source.networkId;
1591 dest.writeInt(networkId);
1656 config.networkId = in.readInt();
H A DWifiManager.java583 * <li>networkId</li>
627 * The {@code networkId} field of the supplied configuration object
643 config.networkId = -1;
653 * are non-<code>null</code>. The {@code networkId} field
655 * @return Returns the {@code networkId} of the supplied
658 * Returns {@code -1} on failure, including when the {@code networkId}
663 if (config == null || config.networkId < 0) {
1907 * Connect to a network with the given networkId.
1912 * @param networkId the network id identifiying the network in the
1919 public void connect(int networkId, ActionListene argument
[all...]

Completed in 4952 milliseconds