Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/backup/
DBackupAgent.java399 final Context deContext = createDeviceProtectedStorageContext(); in onFullBackup() local
400 final String deviceRootDir = deContext.getDataDir().getCanonicalPath(); in onFullBackup()
401 final String deviceFilesDir = deContext.getFilesDir().getCanonicalPath(); in onFullBackup()
402 final String deviceNoBackupDir = deContext.getNoBackupFilesDir().getCanonicalPath(); in onFullBackup()
403 final String deviceDatabaseDir = deContext.getDatabasePath("foo").getParentFile() in onFullBackup()
405 final String deviceSharedPrefsDir = deContext.getSharedPreferencesPath("foo") in onFullBackup()
407 final String deviceCacheDir = deContext.getCacheDir().getCanonicalPath(); in onFullBackup()
408 final String deviceCodeCacheDir = deContext.getCodeCacheDir().getCanonicalPath(); in onFullBackup()
625 final Context deContext = createDeviceProtectedStorageContext(); in fullBackupFile() local
626 deviceRootDir = deContext.getDataDir().getCanonicalPath(); in fullBackupFile()
[all …]
DFullBackup.java372 final Context deContext = context.createDeviceProtectedStorageContext(); in BackupScheme() local
373 DEVICE_FILES_DIR = deContext.getFilesDir(); in BackupScheme()
374 DEVICE_DATABASE_DIR = deContext.getDatabasePath("foo").getParentFile(); in BackupScheme()
375 DEVICE_ROOT_DIR = deContext.getDataDir(); in BackupScheme()
376 DEVICE_SHAREDPREF_DIR = deContext.getSharedPreferencesPath("foo").getParentFile(); in BackupScheme()
377 DEVICE_CACHE_DIR = deContext.getCacheDir(); in BackupScheme()
378 DEVICE_NOBACKUP_DIR = deContext.getNoBackupFilesDir(); in BackupScheme()