Lines Matching refs:mAsset
51 std::unique_ptr<Asset> mAsset; member
53 explicit AAsset(std::unique_ptr<Asset> asset) : mAsset(std::move(asset)) { } in AAsset()
151 return asset->mAsset->read(buf, (size_t)count); in AAsset_read()
156 return asset->mAsset->seek(offset, whence); in AAsset_seek()
161 return asset->mAsset->seek(offset, whence); in AAsset_seek64()
166 asset->mAsset->close(); in AAsset_close()
172 return asset->mAsset->getBuffer(false); in AAsset_getBuffer()
177 return asset->mAsset->getLength(); in AAsset_getLength()
182 return asset->mAsset->getLength(); in AAsset_getLength64()
187 return asset->mAsset->getRemainingLength(); in AAsset_getRemainingLength()
192 return asset->mAsset->getRemainingLength(); in AAsset_getRemainingLength64()
199 int ret = asset->mAsset->openFileDescriptor(&outStart64, &outLength64); in AAsset_openFileDescriptor()
208 return asset->mAsset->openFileDescriptor(outStart, outLength); in AAsset_openFileDescriptor64()
213 return asset->mAsset->isAllocated() ? 1 : 0; in AAsset_isAllocated()