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.java367 final Context ceContext = createCredentialProtectedStorageContext(); in onFullBackup() local
368 final String rootDir = ceContext.getDataDir().getCanonicalPath(); in onFullBackup()
369 final String filesDir = ceContext.getFilesDir().getCanonicalPath(); in onFullBackup()
370 final String noBackupDir = ceContext.getNoBackupFilesDir().getCanonicalPath(); in onFullBackup()
371 final String databaseDir = ceContext.getDatabasePath("foo").getParentFile() in onFullBackup()
373 final String sharedPrefsDir = ceContext.getSharedPreferencesPath("foo").getParentFile() in onFullBackup()
375 final String cacheDir = ceContext.getCacheDir().getCanonicalPath(); in onFullBackup()
376 final String codeCacheDir = ceContext.getCodeCacheDir().getCanonicalPath(); in onFullBackup()
591 final Context ceContext = createCredentialProtectedStorageContext(); in fullBackupFile() local
592 rootDir = ceContext.getDataDir().getCanonicalPath(); in fullBackupFile()
[all …]
DFullBackup.java362 final Context ceContext = context.createCredentialProtectedStorageContext(); in BackupScheme() local
363 FILES_DIR = ceContext.getFilesDir(); in BackupScheme()
364 DATABASE_DIR = ceContext.getDatabasePath("foo").getParentFile(); in BackupScheme()
365 ROOT_DIR = ceContext.getDataDir(); in BackupScheme()
366 SHAREDPREF_DIR = ceContext.getSharedPreferencesPath("foo").getParentFile(); in BackupScheme()
367 CACHE_DIR = ceContext.getCacheDir(); in BackupScheme()
368 NOBACKUP_DIR = ceContext.getNoBackupFilesDir(); in BackupScheme()