Searched defs:pii (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
H A DRlog.java101 * @param pii the personally identifiable information we want to apply secure hash on.
102 * @return If tag is loggable in verbose mode or pii is null, return the original input.
103 * otherwise return a secure Hash of input pii
105 public static String pii(String tag, Object pii) { argument
106 String val = String.valueOf(pii);
107 if (pii == null || TextUtils.isEmpty(val) || isLoggable(tag, Log.VERBOSE)) {
116 * @param pii the personally identifiable information we want to apply secure hash on.
117 * @return If enablePiiLogging is set to true or pii is null, return the original input.
118 * otherwise return a secure Hash of input pii
120 pii(boolean enablePiiLogging, Object pii) argument
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DLog.java371 public static String piiHandle(Object pii) { argument
372 if (pii == null || VERBOSE) {
373 return String.valueOf(pii);
377 if (pii instanceof Uri) {
378 Uri uri = (Uri) pii;
400 sb.append(pii(pii));
412 public static String pii(Object pii) { argument
413 if (pii
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerShellCommand.java2628 private String loadText(PackageItemInfo pii, int res, CharSequence nonLocalized) argument
2634 Resources r = getResources(pii);
2645 private Resources getResources(PackageItemInfo pii) throws RemoteException { argument
2646 Resources res = mResourceCache.get(pii.packageName);
2649 ApplicationInfo ai = mInterface.getApplicationInfo(pii.packageName, 0, 0);
2653 mResourceCache.put(pii.packageName, res);

Completed in 66 milliseconds