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

/frameworks/base/include/androidfw/
H A DAssetManager.h18 // Asset management class. AssetManager objects are thread-safe.
62 * The purpose of the AssetManager is to create Asset objects. To do
70 class AssetManager : public AAssetManager { class in namespace:android
86 AssetManager(CacheMode cacheMode = CACHE_OFF);
87 virtual ~AssetManager(void);
130 * the lifetime of an AssetManager if the user updates the device's
153 * The object returned does not depend on the AssetManager. It should
219 * Return true if the files this AssetManager references are all
221 * is returned, you will need to create a new AssetManager to get
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp27 #include <androidfw/AssetManager.h>
76 const char* AssetManager::RESOURCES_FILENAME = "resources.arsc";
77 const char* AssetManager::IDMAP_BIN = "/system/bin/idmap";
78 const char* AssetManager::OVERLAY_DIR = "/vendor/overlay";
79 const char* AssetManager::TARGET_PACKAGE_NAME = "android";
80 const char* AssetManager::TARGET_APK_PATH = "/system/framework/framework-res.apk";
81 const char* AssetManager::IDMAP_DIR = "/data/resource-cache";
132 * AssetManager
136 int32_t AssetManager::getGlobalCount()
141 AssetManager function in class:AssetManager
[all...]
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java42 public final class AssetManager implements AutoCloseable { class in inherits:AutoCloseable
66 private static final String TAG = "AssetManager";
72 /*package*/ static AssetManager sSystem = null;
87 * Create a new AssetManager containing only the basic system assets.
93 public AssetManager() { method in class:AssetManager
108 AssetManager system = new AssetManager(true);
115 private AssetManager(boolean isSystem) { method in class:AssetManager
131 public static AssetManager getSystem() {
556 Log.w(TAG, "AssetManager "
[all...]

Completed in 2918 milliseconds