Searched refs:idmapPath (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/libs/androidfw/ |
D | AssetManager.cpp | 231 const String8 idmapPath = idmapPathForPackagePath(packagePath); in addOverlayPath() local 236 if (mAssetPaths[i].idmap == idmapPath) { in addOverlayPath() 243 if ((idmap = openAssetFromFileLocked(idmapPath, Asset::ACCESS_BUFFER)) == NULL) { in addOverlayPath() 244 ALOGW("failed to open idmap file %s\n", idmapPath.string()); in addOverlayPath() 252 ALOGW("failed to read idmap file %s\n", idmapPath.string()); in addOverlayPath() 260 idmapPath.string(), packagePath.string(), overlayPath.string()); in addOverlayPath() 267 if (access(idmapPath.string(), R_OK) != 0) { in addOverlayPath() 268 ALOGW("failed to access file %s: %s\n", idmapPath.string(), strerror(errno)); in addOverlayPath() 279 oap.idmap = idmapPath; in addOverlayPath() 282 targetPath.string(), overlayPath.string(), idmapPath.string()); in addOverlayPath()
|
/frameworks/base/core/java/android/content/res/ |
D | AssetManager.java | 679 public final int addOverlayPath(String idmapPath) { in addOverlayPath() argument 681 int res = addOverlayPathNative(idmapPath); in addOverlayPath() 692 public native final int addOverlayPathNative(String idmapPath); in addOverlayPathNative() argument
|
/frameworks/base/core/java/android/app/ |
D | ResourcesManager.java | 268 for (final String idmapPath : key.mOverlayDirs) { in createAssetManager() 269 assets.addOverlayPath(idmapPath); in createAssetManager()
|
/frameworks/base/core/jni/ |
D | android_util_AssetManager.cpp | 554 jstring idmapPath) in android_content_AssetManager_addOverlayPath() argument 556 ScopedUtfChars idmapPath8(env, idmapPath); in android_content_AssetManager_addOverlayPath()
|