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.java324 final Context deContext = createDeviceProtectedStorageContext(); in onFullBackup() local
325 final String deviceRootDir = deContext.getDataDir().getCanonicalPath(); in onFullBackup()
326 final String deviceFilesDir = deContext.getFilesDir().getCanonicalPath(); in onFullBackup()
327 final String deviceNoBackupDir = deContext.getNoBackupFilesDir().getCanonicalPath(); in onFullBackup()
328 final String deviceDatabaseDir = deContext.getDatabasePath("foo").getParentFile() in onFullBackup()
330 final String deviceSharedPrefsDir = deContext.getSharedPreferencesPath("foo") in onFullBackup()
332 final String deviceCacheDir = deContext.getCacheDir().getCanonicalPath(); in onFullBackup()
333 final String deviceCodeCacheDir = deContext.getCodeCacheDir().getCanonicalPath(); in onFullBackup()
538 final Context deContext = createDeviceProtectedStorageContext(); in fullBackupFile() local
539 deviceRootDir = deContext.getDataDir().getCanonicalPath(); in fullBackupFile()
[all …]
DFullBackup.java331 final Context deContext = context.createDeviceProtectedStorageContext(); in BackupScheme() local
332 DEVICE_FILES_DIR = deContext.getFilesDir(); in BackupScheme()
333 DEVICE_DATABASE_DIR = deContext.getDatabasePath("foo").getParentFile(); in BackupScheme()
334 DEVICE_ROOT_DIR = deContext.getDataDir(); in BackupScheme()
335 DEVICE_SHAREDPREF_DIR = deContext.getSharedPreferencesPath("foo").getParentFile(); in BackupScheme()
336 DEVICE_CACHE_DIR = deContext.getCacheDir(); in BackupScheme()
337 DEVICE_NOBACKUP_DIR = deContext.getNoBackupFilesDir(); in BackupScheme()