OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:idmapPath
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/core/java/android/content/res/
AssetManager.java
679
public final int addOverlayPath(String
idmapPath
) {
681
int res = addOverlayPathNative(
idmapPath
);
692
public native final int addOverlayPathNative(String
idmapPath
);
/frameworks/base/libs/androidfw/
AssetManager.cpp
231
const String8
idmapPath
= idmapPathForPackagePath(packagePath);
236
if (mAssetPaths[i].idmap ==
idmapPath
) {
243
if ((idmap = openAssetFromFileLocked(
idmapPath
, Asset::ACCESS_BUFFER)) == NULL) {
244
ALOGW("failed to open idmap file %s\n",
idmapPath
.string());
252
ALOGW("failed to read idmap file %s\n",
idmapPath
.string());
260
idmapPath
.string(), packagePath.string(), overlayPath.string());
267
if (access(
idmapPath
.string(), R_OK) != 0) {
268
ALOGW("failed to access file %s: %s\n",
idmapPath
.string(), strerror(errno));
279
oap.idmap =
idmapPath
;
281
ALOGD("Overlay added: targetPath=%s overlayPath=%s
idmapPath
=%s\n"
[
all
...]
/frameworks/base/core/java/android/app/
ResourcesManager.java
268
for (final String
idmapPath
: key.mOverlayDirs) {
269
assets.addOverlayPath(
idmapPath
);
[
all
...]
/frameworks/base/core/jni/
android_util_AssetManager.cpp
554
jstring
idmapPath
)
556
ScopedUtfChars idmapPath8(env,
idmapPath
);
[
all
...]
Completed in 105 milliseconds