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.java451 final Context deContext = createDeviceProtectedStorageContext(); in onFullBackup() local
452 final String deviceRootDir = deContext.getDataDir().getCanonicalPath(); in onFullBackup()
453 final String deviceFilesDir = deContext.getFilesDir().getCanonicalPath(); in onFullBackup()
454 final String deviceDatabaseDir = deContext.getDatabasePath("foo").getParentFile() in onFullBackup()
456 final String deviceSharedPrefsDir = deContext.getSharedPreferencesPath("foo") in onFullBackup()
482 Set<String> extraExcludedDeviceDirs = getExtraExcludeDirsIfAny(deContext); in onFullBackup()
700 final Context deContext = createDeviceProtectedStorageContext(); in fullBackupFile() local
701 deviceRootDir = deContext.getDataDir().getCanonicalPath(); in fullBackupFile()
702 deviceFilesDir = deContext.getFilesDir().getCanonicalPath(); in fullBackupFile()
703 deviceNbFilesDir = deContext.getNoBackupFilesDir().getCanonicalPath(); in fullBackupFile()
[all …]
DFullBackup.java449 final Context deContext = context.createDeviceProtectedStorageContext(); in BackupScheme() local
450 DEVICE_FILES_DIR = deContext.getFilesDir(); in BackupScheme()
451 DEVICE_DATABASE_DIR = deContext.getDatabasePath("foo").getParentFile(); in BackupScheme()
452 DEVICE_ROOT_DIR = deContext.getDataDir(); in BackupScheme()
453 DEVICE_SHAREDPREF_DIR = deContext.getSharedPreferencesPath("foo").getParentFile(); in BackupScheme()
454 DEVICE_CACHE_DIR = deContext.getCacheDir(); in BackupScheme()
455 DEVICE_NOBACKUP_DIR = deContext.getNoBackupFilesDir(); in BackupScheme()