Searched refs:DynamicRefTable (Results 1 – 9 of 9) sorted by relevance
/frameworks/base/libs/androidfw/tests/ |
D | DynamicRefTable_test.cpp | 25 DynamicRefTable shared_table(0x02, /* appAsLib */ false); in TEST() 34 DynamicRefTable shared_app_table(0x02, /* appAsLib */ true); in TEST() 45 DynamicRefTable shared_table(0x03, /* appAsLib */ false); in TEST() 54 DynamicRefTable shared_app_table(0x04, /* appAsLib */ true); in TEST() 65 DynamicRefTable shared_table(0x2, /* appAsLib */ false); in TEST() 75 DynamicRefTable app_table(0x7f, /* appAsLib */ false); in TEST() 86 DynamicRefTable shared_app_table(0x2, /* appAsLib */ true); in TEST() 98 DynamicRefTable app_table(0x7f, /* appAsLib */ false); in TEST() 108 DynamicRefTable custom_app_table(0x8f, /* appAsLib */ false); in TEST()
|
/frameworks/base/libs/androidfw/include/androidfw/ |
D | AssetManager2.h | 121 const DynamicRefTable* GetDynamicRefTableForPackage(uint32_t package_id) const; 125 const DynamicRefTable* GetDynamicRefTableForCookie(ApkAssetsCookie cookie) const; 346 DynamicRefTable dynamic_ref_table;
|
D | ResourceTypes.h | 800 class DynamicRefTable; variable 813 explicit ResXMLTree(const DynamicRefTable* dynamicRefTable); 828 std::unique_ptr<const DynamicRefTable> mDynamicRefTable; 1703 class DynamicRefTable 1707 DynamicRefTable(); 1708 DynamicRefTable(uint8_t packageId, bool appAsLib); 1714 status_t addMappings(const DynamicRefTable& other); 1723 std::unique_ptr<DynamicRefTable> clone() const; 2038 const DynamicRefTable* getDynamicRefTableForCookie(int32_t cookie) const;
|
/frameworks/base/libs/androidfw/ |
D | ResourceTypes.cpp | 1611 ResXMLTree::ResXMLTree(const DynamicRefTable* dynamicRefTable) in ResXMLTree() 1614 : std::unique_ptr<DynamicRefTable>(nullptr)) in ResXMLTree() 1625 , mDynamicRefTable(std::unique_ptr<DynamicRefTable>(nullptr)) in ResXMLTree() 3629 DynamicRefTable dynamicRefTable; 6149 const DynamicRefTable* ResTable::getDynamicRefTableForCookie(int32_t cookie) const in getDynamicRefTableForCookie() 6882 DynamicRefTable::DynamicRefTable() : DynamicRefTable(0, false) {} in DynamicRefTable() function in android::DynamicRefTable 6884 DynamicRefTable::DynamicRefTable(uint8_t packageId, bool appAsLib) in DynamicRefTable() function in android::DynamicRefTable 6895 std::unique_ptr<DynamicRefTable> DynamicRefTable::clone() const { in clone() 6896 std::unique_ptr<DynamicRefTable> clone = std::unique_ptr<DynamicRefTable>( in clone() 6897 new DynamicRefTable(mAssignedPackageId, mAppAsLib)); in clone() [all …]
|
D | AssetManager2.cpp | 62 const DynamicRefTable* dynamic_ref_table; 112 DynamicRefTable& ref_table = package_groups_.back().dynamic_ref_table; in BuildDynamicRefTable() 189 const DynamicRefTable* AssetManager2::GetDynamicRefTableForPackage(uint32_t package_id) const { in GetDynamicRefTableForPackage() 201 const DynamicRefTable* AssetManager2::GetDynamicRefTableForCookie(ApkAssetsCookie cookie) const { in GetDynamicRefTableForCookie()
|
/frameworks/base/tools/aapt2/format/binary/ |
D | TableFlattener_test.cpp | 451 const DynamicRefTable* dynamic_ref_table = result.getDynamicRefTableForCookie(1); in TEST_F() 476 const DynamicRefTable* dynamic_ref_table = result.getDynamicRefTableForCookie(1); in TEST_F()
|
D | BinaryResourceParser.cpp | 424 DynamicRefTable dynamic_ref_table; in ParseLibrary()
|
/frameworks/base/core/jni/ |
D | android_util_AssetManager.cpp | 730 const DynamicRefTable* dynamic_ref_table = assetmanager->GetDynamicRefTableForCookie(cookie); in NativeOpenXmlAsset()
|
/frameworks/base/tools/aapt/ |
D | Command.cpp | 790 const DynamicRefTable* dynamicRefTable = res.getDynamicRefTableForCookie(assetsCookie); in doDump()
|