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

  /frameworks/base/core/java/android/app/backup/
RestoreDescription.aidl 19 parcelable RestoreDescription;
RestoreDescription.java 33 public class RestoreDescription implements 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) {
92 public static final Parcelable.Creator<RestoreDescription> CREATOR
93 = new Parcelable.Creator<RestoreDescription>() {
94 public RestoreDescription createFromParcel(Parcel in) {
95 final RestoreDescription unparceled = new RestoreDescription(in)
    [all...]
BackupTransport.java 306 * <p>If the package name in the returned RestoreDescription object is the singleton
307 * {@link RestoreDescription#NO_MORE_PACKAGES}, it indicates that no further data is available
322 * @return A RestoreDescription object containing the name of one of the packages
324 * restore data; or {@link RestoreDescription#NO_MORE_PACKAGES} to indicate that
328 public RestoreDescription nextRestorePackage() {
334 * method reported {@link RestoreDescription#TYPE_KEY_VALUE} as its delivery type.
516 * {@link RestoreDescription#TYPE_FULL_STREAM} data.
550 * If the OS encounters an error while processing {@link RestoreDescription#TYPE_FULL_STREAM}
646 public RestoreDescription nextRestorePackage() throws RemoteException {
  /frameworks/base/core/java/com/android/internal/backup/
IBackupTransport.aidl 19 import android.app.backup.RestoreDescription;
205 * <p>If the package name in the returned RestoreDescription object is the singleton
206 * {@link RestoreDescription#NO_MORE_PACKAGES}, it indicates that no further data is available
213 * @return A RestoreDescription object containing the name of one of the packages
215 * restore data; or {@link RestoreDescription#NO_MORE_PACKAGES} to indicate that
219 RestoreDescription nextRestorePackage();
267 * {@link RestoreDescription#TYPE_FULL_STREAM} data.
296 * If the OS encounters an error while processing {@link RestoreDescription#TYPE_FULL_STREAM}
LocalTransport.java 22 import android.app.backup.RestoreDescription;
467 public RestoreDescription nextRestorePackage() {
486 mRestoreType = RestoreDescription.TYPE_KEY_VALUE;
498 mRestoreType = RestoreDescription.TYPE_FULL_STREAM;
505 return new RestoreDescription(name, mRestoreType);
515 return RestoreDescription.NO_MORE_PACKAGES;
522 if (mRestoreType != RestoreDescription.TYPE_KEY_VALUE) {
600 if (mRestoreType == RestoreDescription.TYPE_FULL_STREAM) {
640 if (mRestoreType != RestoreDescription.TYPE_FULL_STREAM) {
691 * If the OS encounters an error while processing {@link RestoreDescription#TYPE_FULL_STREAM
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/
BackupManagerService.java 38 import android.app.backup.RestoreDescription;
    [all...]
  /frameworks/base/
compiled-classes-phone 562 android.app.backup.RestoreDescription
    [all...]

Completed in 5917 milliseconds