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