Home
last modified time | relevance | path

Searched refs:mAssetPaths (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/libs/androidfw/
DAssetManager.cpp161 for (size_t i=0; i<mAssetPaths.size(); i++) { in ~AssetManager()
162 ALOGV("Cleaning path #%d: fd=%d, zip=%p", (int)i, mAssetPaths[i].rawFd, in ~AssetManager()
163 mAssetPaths[i].zip.get()); in ~AssetManager()
164 if (mAssetPaths[i].rawFd >= 0 && mAssetPaths[i].zip == NULL) { in ~AssetManager()
165 close(mAssetPaths[i].rawFd); in ~AssetManager()
200 for (size_t i=0; i<mAssetPaths.size(); i++) { in addAssetPath()
201 if (mAssetPaths[i].path == ap.path) { in addAssetPath()
213 ssize_t apPos = mAssetPaths.add(ap); in addAssetPath()
217 *cookie = static_cast<int32_t>(mAssetPaths.size()); in addAssetPath()
225 mAssetPaths.add(oap); in addAssetPath()
[all …]
/frameworks/base/libs/androidfw/include/androidfw/
DAssetManager.h347 Vector<asset_path> mAssetPaths; variable