Home
last modified time | relevance | path

Searched refs:BackupKeyPredicate (Results 1 – 3 of 3) sorted by relevance

/external/libbackup/src/com/google/android/libraries/backup/
DBackupKeyPredicates.java26 public static BackupKeyPredicate buildPredicateFromAnnotatedFieldsIn( in buildPredicateFromAnnotatedFieldsIn()
40 public static BackupKeyPredicate buildPredicateFromAnnotatedRegexFieldsIn( in buildPredicateFromAnnotatedRegexFieldsIn()
43 Set<BackupKeyPredicate> patternPredicates = new HashSet<>(); in buildPredicateFromAnnotatedRegexFieldsIn()
81 public static BackupKeyPredicate in(final Collection<? extends String> collection) { in in()
85 return new BackupKeyPredicate() { in in()
97 public static BackupKeyPredicate containsPattern(String pattern) {
99 return new BackupKeyPredicate() {
114 public static BackupKeyPredicate or(Iterable<BackupKeyPredicate> predicates) {
115 final List<BackupKeyPredicate> copiedPredicates = new ArrayList<>();
116 for (BackupKeyPredicate predicate : predicates) {
[all …]
DPersistentBackupAgentHelper.java64 Map<String, BackupKeyPredicate> fileBackupKeyPredicates = getBackupSpecification(); in writeFromPreferenceFilesToBackupFile()
67 for (Map.Entry<String, BackupKeyPredicate> entry : fileBackupKeyPredicates.entrySet()) { in writeFromPreferenceFilesToBackupFile()
87 protected abstract Map<String, BackupKeyPredicate> getBackupSpecification(); in getBackupSpecification()
94 String srcFileName, Editor editor, BackupKeyPredicate backupKeyPredicate) { in writeToBackupFile()
DBackupKeyPredicate.java4 public interface BackupKeyPredicate { interface