Home
last modified time | relevance | path

Searched refs:IncludeExcludeRules (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/app/backup/
DBackupAgentTest.java24 import android.app.backup.BackupAgent.IncludeExcludeRules;
80 IncludeExcludeRules expectedRules = new IncludeExcludeRules(includePaths, excludePaths); in testGetIncludeExcludeRules_isNotMigration_returnsRules()
86 IncludeExcludeRules rules = backupAgent.getIncludeExcludeRules(mBackupScheme); in testGetIncludeExcludeRules_isNotMigration_returnsRules()
/frameworks/base/core/java/android/app/backup/
DBackupAgent.java456 IncludeExcludeRules includeExcludeRules; in onFullBackup()
602 public IncludeExcludeRules getIncludeExcludeRules(FullBackup.BackupScheme backupScheme) in getIncludeExcludeRules()
611 return new IncludeExcludeRules(manifestIncludeMap, manifestExcludeSet); in getIncludeExcludeRules()
1419 public static class IncludeExcludeRules { class in BackupAgent
1424 public IncludeExcludeRules( in IncludeExcludeRules() method in BackupAgent.IncludeExcludeRules
1433 public static IncludeExcludeRules emptyRules() { in emptyRules()
1434 return new IncludeExcludeRules(Collections.emptyMap(), new ArraySet<>()); in emptyRules()
1460 IncludeExcludeRules that = (IncludeExcludeRules) object; in equals()