Searched defs:appLabel (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DPackageInstaller.java351 public void updateSessionAppLabel(int sessionId, @Nullable CharSequence appLabel) { argument
353 final String val = (appLabel != null) ? appLabel.toString() : null;
883 public String appLabel; field in class:PackageInstaller.SessionParams
916 appLabel = source.readString();
971 public void setAppLabel(@Nullable CharSequence appLabel) { argument
972 this.appLabel = (appLabel != null) ? appLabel.toString() : null;
1032 pw.printPair("appLabel", appLabe
1103 public CharSequence appLabel; field in class:PackageInstaller.SessionInfo
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerService.java141 private static final String ATTR_APP_LABEL = "appLabel";
406 params.appLabel = readStringAttribute(in, ATTR_APP_LABEL);
478 writeStringAttribute(out, ATTR_APP_LABEL, params.appLabel);
720 public void updateSessionAppLabel(int sessionId, String appLabel) { argument
726 session.params.appLabel = appLabel;

Completed in 42 milliseconds