Home | History | Annotate | Download | only in backup

Lines Matching defs:BackupAgent

55  * {@link android.app.backup.BackupAgent}, implement the
61 * tag's {@code android:backupAgent} attribute.
65 * <p>For more information about using BackupAgent, read the
85 * android:backupAgent} attribute) is instantiated within
112 public abstract class BackupAgent extends ContextWrapper {
113 private static final String TAG = "BackupAgent";
164 public BackupAgent() {
719 * {@link BackupAgent#TYPE_FILE} or {@link BackupAgent#TYPE_DIRECTORY}.
908 BackupAgent.this.onBackup(oldState, output, newState);
910 Log.d(TAG, "onBackup (" + BackupAgent.this.getClass().getName() + ") threw", ex);
913 Log.d(TAG, "onBackup (" + BackupAgent.this.getClass().getName() + ") threw", ex);
947 BackupAgent.this.onRestore(input, appVersionCode, newState);
949 Log.d(TAG, "onRestore (" + BackupAgent.this.getClass().getName() + ") threw", ex);
952 Log.d(TAG, "onRestore (" + BackupAgent.this.getClass().getName() + ") threw", ex);
985 BackupAgent.this.onFullBackup(new FullBackupDataOutput(data, quotaBytes));
987 Log.d(TAG, "onFullBackup (" + BackupAgent.this.getClass().getName() + ") threw", ex);
990 Log.d(TAG, "onFullBackup (" + BackupAgent.this.getClass().getName() + ") threw", ex);
1026 BackupAgent.this.onFullBackup(measureOutput);
1028 Log.d(TAG, "onFullBackup[M] (" + BackupAgent.this.getClass().getName() + ") threw", ex);
1031 Log.d(TAG, "onFullBackup[M] (" + BackupAgent.this.getClass().getName() + ") threw", ex);
1049 BackupAgent.this.onRestoreFile(data, size, type, domain, path, mode, mtime);
1051 Log.d(TAG, "onRestoreFile (" + BackupAgent.this.getClass().getName() + ") threw", e);
1074 BackupAgent.this.onRestoreFinished();
1076 Log.d(TAG, "onRestoreFinished (" + BackupAgent.this.getClass().getName() + ") threw", e);
1100 BackupAgent.this.onQuotaExceeded(backupDataBytes, quotaBytes);
1102 Log.d(TAG, "onQuotaExceeded(" + BackupAgent.this.getClass().getName() + ") threw",