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

1 2

  /frameworks/base/wifi/java/android/net/wifi/
StateChangeResult.java 26 StateChangeResult(int networkId, String SSID, String BSSID, SupplicantState state) {
30 this.networkId = networkId;
33 int networkId;
WifiConfiguration.java 265 public int networkId;
403 networkId = INVALID_NETWORK_ID;
433 sbuf.append("ID: ").append(this.networkId).append(" SSID: ").append(this.SSID).
521 networkId = -1;
568 networkId = source.networkId;
599 dest.writeInt(networkId);
630 config.networkId = in.readInt();
WifiMonitor.java 646 int networkId = -1;
667 networkId = value;
685 notifySupplicantStateChange(networkId, SSID, BSSID, newSupplicantState);
691 int networkId = -1;
699 networkId = Integer.parseInt(match.group(2));
701 networkId = -1;
705 notifyNetworkStateChange(newState, BSSID, networkId);
711 * @param networkId the configured network on which the state change occurred
733 * @param networkId the configured network on which the state change occurred
738 void notifySupplicantStateChange(int networkId, String SSID, String BSSID, SupplicantState newState)
    [all...]
WifiConfigStore.java 182 if(mWifiNative.enableNetwork(config.networkId, false)) {
186 loge("Enable network failed on " + config.networkId);
216 if (config.networkId != INVALID_NETWORK_ID) {
226 config.networkId = netId;
248 if (config == null || (config.networkId == INVALID_NETWORK_ID &&
253 boolean newNetwork = (config.networkId == INVALID_NETWORK_ID);
634 config.networkId = Integer.parseInt(result[0]);
652 mConfiguredNetworks.put(config.networkId, config);
653 mNetworkIds.put(configKey(config), config.networkId);
663 if(config != null && config.networkId != netId)
    [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);
  /frameworks/base/services/java/com/android/server/net/
NetworkIdentitySet.java 50 final String networkId;
52 networkId = readOptionalString(in);
54 networkId = null;
63 add(new NetworkIdentity(type, subType, subscriberId, networkId, false));
NetworkPolicyManagerService.java 197 private static final String ATTR_NETWORK_ID = "networkId";
    [all...]
  /packages/apps/Settings/src/com/android/settings/net/
DataUsageMeteredSettings.java 104 final String networkId = removeDoubleQuotes(config.SSID);
105 final NetworkTemplate template = NetworkTemplate.buildTemplateWifi(networkId);
107 pref.setTitle(networkId);
  /packages/apps/Settings/src/com/android/settings/wifi/
AccessPoint.java 63 int networkId;
189 networkId = config.networkId;
201 networkId = -1;
235 if ((networkId ^ other.networkId) < 0) {
236 return (networkId != -1) ? -1 : 1;
268 if (info != null && networkId != WifiConfiguration.INVALID_NETWORK_ID
269 && networkId == info.getNetworkId()) {
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaServiceStateTracker.java 354 int networkId = -1;
376 networkId = Integer.parseInt(states[9]);
384 baseStationLongitude, systemId, networkId);
586 int networkId = 0; //[9] networkId
621 networkId = Integer.parseInt(states[9]);
655 newSS.setSystemAndNetworkId(systemId, networkId);
663 baseStationLongitude, systemId, networkId);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/GL/
glxext.h 712 int networkId;
745 typedef int ( * PFNGLXHYPERPIPECONFIGSGIXPROC) (Display *dpy, int networkId, int npipes, GLXHyperpipeConfigSGIX *cfg, int *hpId);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/GL/
glxext.h 712 int networkId;
745 typedef int ( * PFNGLXHYPERPIPECONFIGSGIXPROC) (Display *dpy, int networkId, int npipes, GLXHyperpipeConfigSGIX *cfg, int *hpId);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/GL/
glxext.h 712 int networkId;
745 typedef int ( * PFNGLXHYPERPIPECONFIGSGIXPROC) (Display *dpy, int networkId, int npipes, GLXHyperpipeConfigSGIX *cfg, int *hpId);
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/13/
android.jar 

Completed in 886 milliseconds

1 2