Searched defs:idmapPath (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/om/
H A DIdmapManager.java107 private boolean isDangerous(@NonNull final String idmapPath) { argument
108 try (DataInputStream dis = new DataInputStream(new FileInputStream(idmapPath))) {
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java706 public final int addOverlayPath(String idmapPath) { argument
708 int res = addOverlayPathNative(idmapPath);
719 public native final int addOverlayPathNative(String idmapPath); argument
/frameworks/base/core/jni/
H A Dandroid_util_AssetManager.cpp553 jstring idmapPath)
555 ScopedUtfChars idmapPath8(env, idmapPath);
552 android_content_AssetManager_addOverlayPath(JNIEnv* env, jobject clazz, jstring idmapPath) argument
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp222 const String8 idmapPath = idmapPathForPackagePath(packagePath); local
227 if (mAssetPaths[i].idmap == idmapPath) {
234 if ((idmap = openAssetFromFileLocked(idmapPath, Asset::ACCESS_BUFFER)) == NULL) {
235 ALOGW("failed to open idmap file %s\n", idmapPath.string());
243 ALOGW("failed to read idmap file %s\n", idmapPath.string());
251 idmapPath.string(), packagePath.string(), overlayPath.string());
258 if (access(idmapPath.string(), R_OK) != 0) {
259 ALOGW("failed to access file %s: %s\n", idmapPath.string(), strerror(errno));
270 oap.idmap = idmapPath;
272 ALOGD("Overlay added: targetPath=%s overlayPath=%s idmapPath
[all...]

Completed in 575 milliseconds