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
79 AssetManager(CacheMode cacheMode = CACHE_OFF);
80 virtual ~AssetManager(void);
120 * the lifetime of an AssetManager if the user updates the device's
143 * The object returned does not depend on the AssetManager. It should
209 * Return true if the files this AssetManager references are all
211 * is returned, you will need to create a new AssetManager to get
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp27 #include <androidfw/AssetManager.h>
136 * AssetManager
140 int32_t AssetManager::getGlobalCount()
145 AssetManager::AssetManager(CacheMode cacheMode) function in class:AssetManager
151 //ALOGI("Creating AssetManager %p #%d\n", this, count);
155 AssetManager::~AssetManager(void)
158 //ALOGI("Destroying AssetManager in %p #%d\n", this, count);
168 bool AssetManager
[all...]
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java36 public final class AssetManager { class
60 private static final String TAG = "AssetManager";
66 /*package*/ static AssetManager sSystem = null;
82 * Create a new AssetManager containing only the basic system assets.
88 public AssetManager() { method in class:AssetManager
103 AssetManager system = new AssetManager(true);
110 private AssetManager(boolean isSystem) { method in class:AssetManager
126 public static AssetManager getSystem() {
525 Log.w(TAG, "AssetManager "
[all...]

Completed in 127 milliseconds