Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/backup/
DBackupAgent.java388 final Context ceContext = createCredentialProtectedStorageContext(); in onFullBackup() local
389 final String rootDir = ceContext.getDataDir().getCanonicalPath(); in onFullBackup()
390 final String filesDir = ceContext.getFilesDir().getCanonicalPath(); in onFullBackup()
391 final String noBackupDir = ceContext.getNoBackupFilesDir().getCanonicalPath(); in onFullBackup()
392 final String databaseDir = ceContext.getDatabasePath("foo").getParentFile() in onFullBackup()
394 final String sharedPrefsDir = ceContext.getSharedPreferencesPath("foo").getParentFile() in onFullBackup()
396 final String cacheDir = ceContext.getCacheDir().getCanonicalPath(); in onFullBackup()
397 final String codeCacheDir = ceContext.getCodeCacheDir().getCanonicalPath(); in onFullBackup()
616 final Context ceContext = createCredentialProtectedStorageContext(); in fullBackupFile() local
617 rootDir = ceContext.getDataDir().getCanonicalPath(); in fullBackupFile()
[all …]
DFullBackup.java364 final Context ceContext = context.createCredentialProtectedStorageContext(); in BackupScheme() local
365 FILES_DIR = ceContext.getFilesDir(); in BackupScheme()
366 DATABASE_DIR = ceContext.getDatabasePath("foo").getParentFile(); in BackupScheme()
367 ROOT_DIR = ceContext.getDataDir(); in BackupScheme()
368 SHAREDPREF_DIR = ceContext.getSharedPreferencesPath("foo").getParentFile(); in BackupScheme()
369 CACHE_DIR = ceContext.getCacheDir(); in BackupScheme()
370 NOBACKUP_DIR = ceContext.getNoBackupFilesDir(); in BackupScheme()