Searched refs:syncDir (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/services/core/java/com/android/server/content/ |
D | SyncStorageEngine.java | 511 File syncDir = new File(systemDir, "sync"); in SyncStorageEngine() local 512 syncDir.mkdirs(); in SyncStorageEngine() 514 maybeDeleteLegacyPendingInfoLocked(syncDir); in SyncStorageEngine() 516 mAccountInfoFile = new AtomicFile(new File(syncDir, "accounts.xml"), "sync-accounts"); in SyncStorageEngine() 517 mStatusFile = new AtomicFile(new File(syncDir, "status.bin"), "sync-status"); in SyncStorageEngine() 518 mStatisticsFile = new AtomicFile(new File(syncDir, "stats.bin"), "sync-stats"); in SyncStorageEngine() 1723 private void maybeDeleteLegacyPendingInfoLocked(File syncDir) { in maybeDeleteLegacyPendingInfoLocked() argument 1724 File file = new File(syncDir, "pending.bin"); in maybeDeleteLegacyPendingInfoLocked()
|
/frameworks/base/core/java/android/content/pm/ |
D | RegisteredServicesCache.java | 711 File syncDir = new File(systemDir, REGISTERED_SERVICES_DIR); in migrateIfNecessaryLocked() local 712 AtomicFile oldFile = new AtomicFile(new File(syncDir, mInterfaceName + ".xml")); in migrateIfNecessaryLocked() 716 File marker = new File(syncDir, mInterfaceName + ".xml.migrated"); in migrateIfNecessaryLocked()
|