Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/tests/coretests/src/android/app/backup/
H A DBackupAgentTest.java23 import android.app.backup.BackupAgent.IncludeExcludeRules;
68 IncludeExcludeRules expectedRules = new IncludeExcludeRules(includePaths, excludePaths); in testGetIncludeExcludeRules_isNotMigration_returnsRules()
74 IncludeExcludeRules rules = mBackupAgent.getIncludeExcludeRules(mBackupScheme); in testGetIncludeExcludeRules_isNotMigration_returnsRules()
/aosp14/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java446 IncludeExcludeRules includeExcludeRules; in onFullBackup()
592 public IncludeExcludeRules getIncludeExcludeRules(FullBackup.BackupScheme backupScheme) in getIncludeExcludeRules()
601 return new IncludeExcludeRules(manifestIncludeMap, manifestExcludeSet); in getIncludeExcludeRules()
1391 public static class IncludeExcludeRules { class in BackupAgent
1396 public IncludeExcludeRules( in IncludeExcludeRules() method in BackupAgent.IncludeExcludeRules
1405 public static IncludeExcludeRules emptyRules() { in emptyRules()
1406 return new IncludeExcludeRules(Collections.emptyMap(), new ArraySet<>()); in emptyRules()
1432 IncludeExcludeRules that = (IncludeExcludeRules) object; in equals()