Home | History | Annotate | Download | only in service

Lines Matching refs:nai

348      * macros like "##LINE1##" or "##NAI##" which is resolved with methods in this class
449 // NAI (Network Access Identifier), used by Sprint for authentication
450 private static final String MACRO_NAI = "NAI";
456 * @param mmsConfig The MMS config which contains NAI suffix.
495 * Returns the NAI (Network Access Identifier) from SystemProperties for the given subscription
501 String nai = telephonyManager.getNai(SubscriptionManager.getSlotId(subId));
503 LogUtil.v("getNai: nai=" + nai);
506 if (!TextUtils.isEmpty(nai)) {
509 nai = nai + naiSuffix;
513 encoded = Base64.encode(nai.getBytes("UTF-8"), Base64.NO_WRAP);
515 encoded = Base64.encode(nai.getBytes(), Base64.NO_WRAP);
518 nai = new String(encoded, "UTF-8");
520 nai = new String(encoded);
523 return nai;