Lines Matching refs:Asset
18 // Asset management class. AssetManager objects are thread-safe.
23 #include <utils/Asset.h>
52 class Asset; // fwd decl for things that include Asset.h first
61 * The purpose of the AssetManager is to create Asset objects. To do
66 * The asset hierarchy may be examined like a filesystem, using
75 //CACHE_SCAN, // scan full(!) asset hierarchy at init() time
87 * added asset path will be examined first when searching for assets,
92 * newly-added asset source.
103 * Iterate over the asset paths in this manager. (Previously
112 * Return an asset path in the manager. 'which' must be between 0 and
134 typedef Asset::AccessMode AccessMode; // typing shortcut
137 * Open an asset.
143 * be freed by calling Asset::close().
145 Asset* open(const char* fileName, AccessMode mode);
148 * Open a non-asset file as an asset.
150 * This is for opening files that are included in an asset package
155 Asset* openNonAsset(const char* fileName, AccessMode mode);
158 * Explicit non-asset file. The file explicitly named by the cookie (the
161 Asset* openNonAsset(void* cookie, const char* fileName, AccessMode mode);
164 * Open a directory within the asset hierarchy.
167 * locale-specific, and generic assets stored loosely or in asset
176 * Open a directory within a particular path of the asset manager.
179 * locale-specific, and generic assets stored loosely or in asset
188 * Get the type of a file in the asset hierarchy. They will either
216 * Get the known locales for this asset manager object.
228 Asset* openInPathLocked(const char* fileName, AccessMode mode,
230 Asset* openNonAssetInPathLocked(const char* fileName, AccessMode mode,
232 Asset* openInLocaleVendorLocked(const char* fileName, AccessMode mode,
241 Asset* openAssetFromFileLocked(const String8& fileName, AccessMode mode);
242 Asset* openAssetFromZipLocked(const ZipFileRO* pZipFile,
272 Asset* openIdmapLocked(const struct asset_path& ap) const;
282 Asset* getResourceTableAsset();
283 Asset* setResourceTableAsset(Asset* asset);
301 Asset* mResourceTableAsset;
326 Asset* getZipResourceTableAsset(const String8& path);
327 Asset* setZipResourceTableAsset(const String8& path, Asset* asset);