Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DInstantAppRegistry.java220 File idFile = new File(getInstantApplicationDir(packageName, userId), in getInstantAppAndroidIdLPw() local
222 if (idFile.exists()) { in getInstantAppAndroidIdLPw()
224 return IoUtils.readFileAsString(idFile.getAbsolutePath()); in getInstantAppAndroidIdLPw()
226 Slog.e(LOG_TAG, "Failed to read instant app android id file: " + idFile, e); in getInstantAppAndroidIdLPw()
242 File idFile = new File(getInstantApplicationDir(packageName, userId), in generateInstantAppAndroidIdLPw() local
244 try (FileOutputStream fos = new FileOutputStream(idFile)) { in generateInstantAppAndroidIdLPw()
247 Slog.e(LOG_TAG, "Error writing instant app android id file: " + idFile, e); in generateInstantAppAndroidIdLPw()