Home | History | Annotate | Download | only in androidfw

Lines Matching full:apkassets

19 #include "androidfw/ApkAssets.h"
33 std::unique_ptr<const ApkAssets> ApkAssets::Load(const std::string& path, bool system) {
34 return ApkAssets::LoadImpl(path, system, false /*load_as_shared_library*/);
37 std::unique_ptr<const ApkAssets> ApkAssets::LoadAsSharedLibrary(const std::string& path,
39 return ApkAssets::LoadImpl(path, system, true /*load_as_shared_library*/);
42 std::unique_ptr<const ApkAssets> ApkAssets::LoadImpl(const std::string& path, bool system,
53 std::unique_ptr<ApkAssets> loaded_apk(new ApkAssets());
86 std::unique_ptr<Asset> ApkAssets::Open(const std::string& path, Asset::AccessMode mode) const {
130 bool ApkAssets::ForEachFile(const std::string& root_path,