Home
last modified time | relevance | path

Searched refs:userDir (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/tv/
DPersistentDataStore.java84 File userDir = Environment.getUserSystemDirectory(userId); in PersistentDataStore() local
85 if (!userDir.exists()) { in PersistentDataStore()
86 if (!userDir.mkdirs()) { in PersistentDataStore()
87 throw new IllegalStateException("User dir cannot be created: " + userDir); in PersistentDataStore()
90 … mAtomicFile = new AtomicFile(new File(userDir, "tv-input-manager-state.xml"), "tv-input-state"); in PersistentDataStore()
/frameworks/base/core/java/android/content/pm/
DRegisteredServicesCache.java804 File userDir = getUserSystemDirectory(userId); in createFileForUser() local
805 File userFile = new File(userDir, REGISTERED_SERVICES_DIR + "/" + mInterfaceName + ".xml"); in createFileForUser()
/frameworks/base/services/core/java/com/android/server/accounts/
DAccountManagerService.java6372 File userDir = Environment.getUserSystemDirectory(userId);
6373 if (!userDir.exists()) {
6374 if (!userDir.mkdirs()) {
6376 "User dir cannot be created: " + userDir);
/frameworks/base/services/core/java/com/android/server/pm/
DSettings.java1357 File userDir = new File(new File(mSystemDir, "users"), Integer.toString(userId));
1358 return new File(userDir, "package-restrictions.xml");
1364 File userDir = new File(new File(mSystemDir, "users"), Integer.toString(userId));
1365 return new File(userDir, RUNTIME_PERMISSIONS_FILE_NAME);