Searched defs:Asset (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/libs/androidfw/include/androidfw/
H A DAsset.h18 // Class providing access to a read-only asset. Asset objects are NOT
44 * "Asset" is the base class for all types of assets. The classes below
48 class Asset { class in namespace:android
50 virtual ~Asset(void) = default;
126 * Adds this Asset to the global Asset list for debugging and
130 static void registerAsset(Asset* asset);
133 * Removes this Asset from the global Asset list.
136 static void unregisterAsset(Asset* asse
[all...]
/frameworks/base/libs/androidfw/
H A DAsset.cpp24 #include <androidfw/Asset.h>
53 static Asset* gHead = NULL;
54 static Asset* gTail = NULL;
56 void Asset::registerAsset(Asset* asset)
70 ALOGI("Creating Asset %p #%d\n", asset, gCount);
74 void Asset::unregisterAsset(Asset* asset)
93 ALOGI("Destroying Asset in %p #%d\n", asset, gCount);
97 int32_t Asset
123 Asset::Asset(void) function in class:Asset
[all...]

Completed in 57 milliseconds