Home
last modified time | relevance | path

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

/frameworks/base/libs/androidfw/include/androidfw/
DAssetManager.h95 bool appAsLib=false, bool isSystemAsset=false);
110 bool appAsLib=false, bool assume_ownership=true);
254 bool appendPathToResTable(asset_path& ap, bool appAsLib=false) const;
DResourceTypes.h1708 DynamicRefTable(uint8_t packageId, bool appAsLib);
1756 const int32_t cookie=-1, bool copyData=false, bool appAsLib=false);
1760 bool appAsLib=false, bool isSystemAsset=false);
2103 bool appAsLib, const int32_t cookie, bool copyData, bool isSystemAsset=false);
2118 bool appAsLib, bool isSystemAsset);
/frameworks/base/libs/androidfw/
DAssetManager.cpp177 const String8& path, int32_t* cookie, bool appAsLib, bool isSystemAsset) { in addAssetPath() argument
230 appendPathToResTable(mAssetPaths.editItemAt(apPos), appAsLib); in addAssetPath()
302 int fd, const String8& debugPathName, int32_t* cookie, bool appAsLib, in addAssetFd() argument
323 appendPathToResTable(mAssetPaths.editItemAt(apPos), appAsLib); in addAssetFd()
539 bool AssetManager::appendPathToResTable(asset_path& ap, bool appAsLib) const { in appendPathToResTable()
614 mResources->add(ass, idmap, nextEntryIdx + 1, !shared, appAsLib, ap.isSystemAsset); in appendPathToResTable()
DResourceTypes.cpp3523 bool appAsLib, bool _isSystemAsset, bool _isDynamic) in PackageGroup()
3528 , dynamicRefTable(static_cast<uint8_t>(_id), appAsLib) in PackageGroup()
4013 const int32_t cookie, bool copyData, bool appAsLib) { in add() argument
4014 return addInternal(data, size, idmapData, idmapDataSize, appAsLib, cookie, copyData); in add()
4030 bool appAsLib, bool isSystemAsset) { in add() argument
4049 idmapData, idmapSize, appAsLib, cookie, copyData, isSystemAsset); in add()
4104 bool appAsLib, const int32_t cookie, bool copyData, bool isSystemAsset) in addInternal() argument
4208 (ResTable_package*)chunk, header, appAsLib, isSystemAsset) != NO_ERROR) { in addInternal()
6563 const Header* const header, bool appAsLib, bool isSystemAsset) in parsePackage() argument
6612 } else if (id == 0 || (id == 0x7f && appAsLib) || isSystemAsset) { in parsePackage()
[all …]
/frameworks/base/core/java/android/content/res/
DAssetManager.java427 private int addAssetPathInternal(String path, boolean overlay, boolean appAsLib) { in addAssetPathInternal() argument
450 assets = ApkAssets.loadFromPath(path, false /*system*/, appAsLib); in addAssetPathInternal()