HomeSort by relevance Sort by last modified time
    Searched refs:nai (Results 1 - 4 of 4) sorted by null

  /frameworks/base/services/core/java/com/android/server/
ConnectivityService.java 503 private void maybeLogBroadcast(NetworkAgentInfo nai, boolean connected, int type) {
506 " broadcast for type " + type + " " + nai.name() +
507 " isDefaultNetwork=" + isDefaultNetwork(nai));
512 public void add(int type, NetworkAgentInfo nai) {
516 if (VDBG) log("Adding agent " + nai + " for legacy network type " + type);
519 if (list.contains(nai)) {
520 loge("Attempting to register duplicate agent for type " + type + ": " + nai);
524 list.add(nai);
527 if (list.size() == 1 || isDefaultNetwork(nai)) {
528 maybeLogBroadcast(nai, true, type)
970 NetworkAgentInfo nai = null; local
1003 NetworkAgentInfo nai = mLegacyTypeTracker.getNetworkForType(networkType); local
1051 NetworkAgentInfo nai = null; local
1067 NetworkAgentInfo nai = null; local
1185 NetworkAgentInfo nai = mLegacyTypeTracker.getNetworkForType(networkType); local
1816 NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo); local
1825 NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo); local
1834 NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo); local
1851 NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo); local
1861 NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo); local
1871 NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo); local
1885 NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo); local
1899 NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo); local
1911 NetworkAgentInfo nai = (NetworkAgentInfo)msg.obj; local
1935 NetworkAgentInfo nai = (NetworkAgentInfo)msg.obj; local
1945 NetworkAgentInfo nai = null; local
2030 NetworkAgentInfo nai = mNetworkForRequestId.get(nri.request.requestId); local
2046 NetworkAgentInfo nai = mNetworkAgentInfos.remove(msg.replyTo); local
2058 NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo); local
2230 NetworkAgentInfo nai = mNetworkForRequestId.get(nri.request.requestId); local
2493 NetworkAgentInfo nai = null; local
2918 NetworkAgentInfo nai = mNetworkForNetId.valueAt(i); local
3526 NetworkAgentInfo nai = new NetworkAgentInfo(messenger, new AsyncChannel(), local
4222 NetworkAgentInfo nai = mLegacyTypeTracker.getNetworkForType(networkType); local
4250 NetworkAgentInfo nai = mLegacyTypeTracker.getNetworkForType(networkType); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
Nat464Xlat.java 92 public static boolean requiresClat(NetworkAgentInfo nai) {
93 final int netType = nai.networkInfo.getType();
94 final boolean connected = nai.networkInfo.isConnected();
96 (nai.linkProperties != null) ? nai.linkProperties.hasIPv4Address() : false;
163 // Copies the stacked clat link in oldLp, if any, to the LinkProperties in nai.
164 public void fixupLinkProperties(NetworkAgentInfo nai, LinkProperties oldLp) {
165 if (isRunningClat(nai) &&
166 nai.linkProperties != null &&
167 !nai.linkProperties.getAllInterfaceNames().contains(CLAT_INTERFACE_NAME))
    [all...]
  /packages/services/Mms/src/com/android/mms/service/
MmsConfig.java 121 // String to append to the NAI header, e.g. ":pcs"
136 // NAI (Network Access Identifier), used by Sprint for authentication
137 public static final String MACRO_NAI = "NAI";
520 * @return the NAI (Network Access Identifier) from SystemProperties
523 String nai = SystemProperties.get("persist.radio.cdma.nai"); local
524 if (!TextUtils.isEmpty(nai)) {
527 nai = nai + naiSuffix;
531 encoded = Base64.encode(nai.getBytes("UTF-8"), Base64.NO_WRAP)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
interworking.c 453 wpa_printf(MSG_DEBUG, "No room for NAI Realm Data "
458 len = WPA_GET_LE16(pos); /* NAI Realm Data field Length */
461 wpa_printf(MSG_DEBUG, "No room for NAI Realm Data "
471 wpa_printf(MSG_DEBUG, "No room for NAI Realm "
476 wpa_hexdump_ascii(MSG_DEBUG, "NAI Realm", pos, realm_len);
518 wpa_printf(MSG_DEBUG, "NAI Realm Count: %u", num);
522 wpa_printf(MSG_DEBUG, "Invalid NAI Realm Count %u - not "
750 static int build_root_nai(char *nai, size_t nai_len, const char *imsi,
759 * Root NAI:
781 pos = nai;
808 char nai[100]; local
2086 char nai[100], *realm; local
    [all...]

Completed in 2178 milliseconds