Home | History | Annotate | Download | only in android

Lines Matching defs:mAsset

49     Asset* mAsset;
51 AAsset(Asset* asset) : mAsset(asset) { }
52 ~AAsset() { delete mAsset; }
173 return asset->mAsset->read(buf, (size_t)count);
178 return asset->mAsset->seek(offset, whence);
183 return asset->mAsset->seek(offset, whence);
188 asset->mAsset->close();
194 return asset->mAsset->getBuffer(false);
199 return asset->mAsset->getLength();
204 return asset->mAsset->getLength();
209 return asset->mAsset->getRemainingLength();
214 return asset->mAsset->getRemainingLength();
221 int ret = asset->mAsset->openFileDescriptor(&outStart64, &outLength64);
230 return asset->mAsset->openFileDescriptor(outStart, outLength);
235 return asset->mAsset->isAllocated() ? 1 : 0;