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

/frameworks/base/include/utils/
H A DAssetManager.h18 // Asset management class. AssetManager objects are thread-safe.
61 * The purpose of the AssetManager is to create Asset objects. To do
69 class AssetManager : public AAssetManager { class in namespace:android
78 AssetManager(CacheMode cacheMode = CACHE_OFF);
79 virtual ~AssetManager(void);
119 * the lifetime of an AssetManager if the user updates the device's
142 * The object returned does not depend on the AssetManager. It should
208 * Return true if the files this AssetManager references are all
210 * is returned, you will need to create a new AssetManager to get
/frameworks/base/libs/utils/
H A DAssetManager.cpp24 #include <utils/AssetManager.h>
105 * AssetManager
109 int32_t AssetManager::getGlobalCount()
114 AssetManager::AssetManager(CacheMode cacheMode) function in class:AssetManager
120 //LOGI("Creating AssetManager %p #%d\n", this, count);
124 AssetManager::~AssetManager(void)
127 //LOGI("Destroying AssetManager in %p #%d\n", this, count);
137 bool AssetManager
[all...]
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java35 public final class AssetManager { class
59 private static final String TAG = "AssetManager";
65 /*package*/ static AssetManager sSystem = null;
81 * Create a new AssetManager containing only the basic system assets.
87 public AssetManager() { method in class:AssetManager
102 AssetManager system = new AssetManager(true);
109 private AssetManager(boolean isSystem) { method in class:AssetManager
125 public static AssetManager getSystem() {
524 Log.w(TAG, "AssetManager "
[all...]

Completed in 1390 milliseconds