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.java313 final Context ceContext = createCredentialProtectedStorageContext(); in onFullBackup() local
314 final String rootDir = ceContext.getDataDir().getCanonicalPath(); in onFullBackup()
315 final String filesDir = ceContext.getFilesDir().getCanonicalPath(); in onFullBackup()
316 final String noBackupDir = ceContext.getNoBackupFilesDir().getCanonicalPath(); in onFullBackup()
317 final String databaseDir = ceContext.getDatabasePath("foo").getParentFile() in onFullBackup()
319 final String sharedPrefsDir = ceContext.getSharedPreferencesPath("foo").getParentFile() in onFullBackup()
321 final String cacheDir = ceContext.getCacheDir().getCanonicalPath(); in onFullBackup()
322 final String codeCacheDir = ceContext.getCodeCacheDir().getCanonicalPath(); in onFullBackup()
529 final Context ceContext = createCredentialProtectedStorageContext(); in fullBackupFile() local
530 rootDir = ceContext.getDataDir().getCanonicalPath(); in fullBackupFile()
[all …]
DFullBackup.java324 final Context ceContext = context.createCredentialProtectedStorageContext(); in BackupScheme() local
325 FILES_DIR = ceContext.getFilesDir(); in BackupScheme()
326 DATABASE_DIR = ceContext.getDatabasePath("foo").getParentFile(); in BackupScheme()
327 ROOT_DIR = ceContext.getDataDir(); in BackupScheme()
328 SHAREDPREF_DIR = ceContext.getSharedPreferencesPath("foo").getParentFile(); in BackupScheme()
329 CACHE_DIR = ceContext.getCacheDir(); in BackupScheme()
330 NOBACKUP_DIR = ceContext.getNoBackupFilesDir(); in BackupScheme()