Home
last modified time | relevance | path

Searched refs:appAsLib (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/include/androidfw/
DAssetManager.h104 bool appAsLib=false, bool isSystemAsset=false);
287 bool appendPathToResTable(const asset_path& ap, bool appAsLib=false) const;
DResourceTypes.h1533 DynamicRefTable(uint8_t packageId, bool appAsLib);
1576 const int32_t cookie=-1, bool copyData=false, bool appAsLib=false);
1580 bool appAsLib=false, bool isSystemAsset=false);
1909 bool appAsLib, const int32_t cookie, bool copyData, bool isSystemAsset=false);
1923 bool appAsLib, bool isSystemAsset);
/frameworks/base/core/java/android/content/res/
DAssetManager.java660 private final int addAssetPathInternal(String path, boolean appAsLib) { in addAssetPathInternal() argument
662 int res = addAssetPathNative(path, appAsLib); in addAssetPathInternal()
668 private native final int addAssetPathNative(String path, boolean appAsLib); in addAssetPathNative() argument
/frameworks/base/libs/androidfw/
DAssetManager.cpp169 const String8& path, int32_t* cookie, bool appAsLib, bool isSystemAsset) in addAssetPath() argument
223 appendPathToResTable(ap, appAsLib); in addAssetPath()
595 bool AssetManager::appendPathToResTable(const asset_path& ap, bool appAsLib) const { in appendPathToResTable()
670 mResources->add(ass, idmap, nextEntryIdx + 1, !shared, appAsLib, ap.isSystemAsset); in appendPathToResTable()
DResourceTypes.cpp3193 bool appAsLib, bool _isSystemAsset) in PackageGroup()
3198 , dynamicRefTable(static_cast<uint8_t>(_id), appAsLib) in PackageGroup()
3673 const int32_t cookie, bool copyData, bool appAsLib) { in add() argument
3674 return addInternal(data, size, idmapData, idmapDataSize, appAsLib, cookie, copyData); in add()
3690 bool appAsLib, bool isSystemAsset) { in add() argument
3709 idmapData, idmapSize, appAsLib, cookie, copyData, isSystemAsset); in add()
3764 bool appAsLib, const int32_t cookie, bool copyData, bool isSystemAsset) in addInternal() argument
3868 (ResTable_package*)chunk, header, appAsLib, isSystemAsset) != NO_ERROR) { in addInternal()
6129 const Header* const header, bool appAsLib, bool isSystemAsset) in parsePackage() argument
6177 } else if (id == 0 || (id == 0x7f && appAsLib) || isSystemAsset) { in parsePackage()
[all …]
/frameworks/base/core/jni/
Dandroid_util_AssetManager.cpp535 jstring path, jboolean appAsLib) in android_content_AssetManager_addAssetPath() argument
548 bool res = am->addAssetPath(String8(path8.c_str()), &cookie, appAsLib); in android_content_AssetManager_addAssetPath()