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

/frameworks/base/core/java/android/app/backup/
H A DRestoreDescription.java33 public class RestoreDescription implements Parcelable { class in inherits:Parcelable
40 * Return this constant RestoreDescription from BackupTransport.nextRestorePackage()
43 public static final RestoreDescription NO_MORE_PACKAGES =
44 new RestoreDescription(NO_MORE_PACKAGES_SENTINEL, 0);
57 return "RestoreDescription{" + mPackageName + " : "
65 public RestoreDescription(String packageName, int dataType) { method in class:RestoreDescription
92 public static final Parcelable.Creator<RestoreDescription> CREATOR
93 = new Parcelable.Creator<RestoreDescription>() {
94 public RestoreDescription createFromParcel(Parcel in) {
95 final RestoreDescription unparcele
106 private RestoreDescription(Parcel in) { method in class:RestoreDescription
[all...]

Completed in 5 milliseconds