Searched defs:AssetManager (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/libs/androidfw/include/androidfw/
H A DAssetManager.h18 // Asset management class. AssetManager objects are thread-safe.
53 * The purpose of the AssetManager is to create Asset objects.
58 class AssetManager : public AAssetManager { class in namespace:android
74 AssetManager();
75 virtual ~AssetManager(void);
97 * This does not give full AssetManager functionality for these assets,
145 * The object returned does not depend on the AssetManager. It should
193 * Return true if the files this AssetManager references are all
195 * is returned, you will need to create a new AssetManager to get
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp27 #include <androidfw/AssetManager.h>
73 const char* AssetManager::RESOURCES_FILENAME = "resources.arsc";
74 const char* AssetManager::IDMAP_BIN = "/system/bin/idmap";
75 const char* AssetManager::OVERLAY_DIR = "/vendor/overlay";
76 const char* AssetManager::PRODUCT_OVERLAY_DIR = "/product/overlay";
77 const char* AssetManager::OVERLAY_THEME_DIR_PROPERTY = "ro.boot.vendor.overlay.theme";
78 const char* AssetManager::TARGET_PACKAGE_NAME = "android";
79 const char* AssetManager::TARGET_APK_PATH = "/system/framework/framework-res.apk";
80 const char* AssetManager::IDMAP_DIR = "/data/resource-cache";
131 * AssetManager
139 AssetManager::AssetManager() : function in class:AssetManager
[all...]
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java57 public final class AssetManager implements AutoCloseable { class in inherits:AutoCloseable
58 private static final String TAG = "AssetManager";
68 @GuardedBy("sSync") static AssetManager sSystem = null;
109 * A Builder class that helps create an AssetManager with only a single invocation of
110 * {@link AssetManager#setApkAssets(ApkAssets[], boolean)}. Without using this builder,
111 * AssetManager must ensure there are system ApkAssets loaded at all times, which when combined
113 * {@link AssetManager#setApkAssets(ApkAssets[], boolean)}.
124 public AssetManager build() {
140 final AssetManager assetManager = new AssetManager(fals
155 public AssetManager() { method in class:AssetManager
177 private AssetManager(boolean sentinel) { method in class:AssetManager
[all...]

Completed in 104 milliseconds