Home
last modified time | relevance | path

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

/frameworks/base/services/tests/servicestests/src/com/android/server/content/
DSyncStorageEngineTest.java445 File syncDir = getSyncDir(); in testComponentParsing() local
446 syncDir.mkdirs(); in testComponentParsing()
447 AtomicFile accountInfoFile = new AtomicFile(new File(syncDir, "accounts.xml")); in testComponentParsing()
521 File syncDir = getSyncDir(); in testAuthorityParsingV2() local
522 syncDir.mkdirs(); in testAuthorityParsingV2()
523 AtomicFile accountInfoFile = new AtomicFile(new File(syncDir, "accounts.xml")); in testAuthorityParsingV2()
555 accountInfoFile = new AtomicFile(new File(syncDir, "accounts.xml")); in testAuthorityParsingV2()
584 accountInfoFile = new AtomicFile(new File(syncDir, "accounts.xml")); in testAuthorityParsingV2()
636 File syncDir = getSyncDir(); in testAuthorityParsing() local
637 syncDir.mkdirs(); in testAuthorityParsing()
[all …]
/frameworks/base/core/java/android/content/pm/
DRegisteredServicesCache.java618 File syncDir = new File(systemDir, REGISTERED_SERVICES_DIR); in migrateIfNecessaryLocked() local
619 AtomicFile oldFile = new AtomicFile(new File(syncDir, mInterfaceName + ".xml")); in migrateIfNecessaryLocked()
623 File marker = new File(syncDir, mInterfaceName + ".xml.migrated"); in migrateIfNecessaryLocked()
/frameworks/base/services/core/java/com/android/server/content/
DSyncStorageEngine.java516 File syncDir = new File(systemDir, "sync"); in SyncStorageEngine() local
517 syncDir.mkdirs(); in SyncStorageEngine()
519 maybeDeleteLegacyPendingInfoLocked(syncDir); in SyncStorageEngine()
521 mAccountInfoFile = new AtomicFile(new File(syncDir, "accounts.xml")); in SyncStorageEngine()
522 mStatusFile = new AtomicFile(new File(syncDir, "status.bin")); in SyncStorageEngine()
523 mPendingFile = new AtomicFile(new File(syncDir, "pending.xml")); in SyncStorageEngine()
524 mStatisticsFile = new AtomicFile(new File(syncDir, "stats.bin")); in SyncStorageEngine()
1939 private void maybeDeleteLegacyPendingInfoLocked(File syncDir) { in maybeDeleteLegacyPendingInfoLocked() argument
1940 File file = new File(syncDir, "pending.bin"); in maybeDeleteLegacyPendingInfoLocked()