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.java221 File idFile = new File(getInstantApplicationDir(packageName, userId), in getInstantAppAndroidIdLPw() local
223 if (idFile.exists()) { in getInstantAppAndroidIdLPw()
225 return IoUtils.readFileAsString(idFile.getAbsolutePath()); in getInstantAppAndroidIdLPw()
227 Slog.e(LOG_TAG, "Failed to read instant app android id file: " + idFile, e); in getInstantAppAndroidIdLPw()
243 File idFile = new File(getInstantApplicationDir(packageName, userId), in generateInstantAppAndroidIdLPw() local
245 try (FileOutputStream fos = new FileOutputStream(idFile)) { in generateInstantAppAndroidIdLPw()
248 Slog.e(LOG_TAG, "Error writing instant app android id file: " + idFile, e); in generateInstantAppAndroidIdLPw()