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.java23 import android.app.backup.BackupAgent.IncludeExcludeRules;
66 IncludeExcludeRules expectedRules = new IncludeExcludeRules(includePaths, excludePaths); in testGetIncludeExcludeRules_isNotMigration_returnsRules()
72 IncludeExcludeRules rules = mBackupAgent.getIncludeExcludeRules(mBackupScheme); in testGetIncludeExcludeRules_isNotMigration_returnsRules()
/frameworks/base/core/java/android/app/backup/
DBackupAgent.java422 IncludeExcludeRules includeExcludeRules; in onFullBackup()
568 public IncludeExcludeRules getIncludeExcludeRules(FullBackup.BackupScheme backupScheme) in getIncludeExcludeRules()
577 return new IncludeExcludeRules(manifestIncludeMap, manifestExcludeSet); in getIncludeExcludeRules()
1325 public static class IncludeExcludeRules { class in BackupAgent
1330 public IncludeExcludeRules( in IncludeExcludeRules() method in BackupAgent.IncludeExcludeRules
1339 public static IncludeExcludeRules emptyRules() { in emptyRules()
1340 return new IncludeExcludeRules(Collections.emptyMap(), new ArraySet<>()); in emptyRules()
1366 IncludeExcludeRules that = (IncludeExcludeRules) object; in equals()