Searched refs:outLength (Results 1 - 9 of 9) sorted by relevance

/frameworks/native/include/android/
H A Dasset_manager.h150 int AAsset_openFileDescriptor(AAsset* asset, off_t* outStart, off_t* outLength);
161 int AAsset_openFileDescriptor64(AAsset* asset, off64_t* outStart, off64_t* outLength);
/frameworks/base/native/android/
H A Dasset_manager.cpp217 int AAsset_openFileDescriptor(AAsset* asset, off_t* outStart, off_t* outLength) argument
224 *outLength = off_t(outLength64);
228 int AAsset_openFileDescriptor64(AAsset* asset, off64_t* outStart, off64_t* outLength) argument
230 return asset->mAsset->openFileDescriptor(outStart, outLength);
/frameworks/base/include/androidfw/
H A DAsset.h104 virtual int openFileDescriptor(off64_t* outStart, off64_t* outLength) const = 0;
244 virtual int openFileDescriptor(off64_t* outStart, off64_t* outLength) const;
301 virtual int openFileDescriptor(off64_t* outStart, off64_t* outLength) const { return -1; }
/frameworks/av/media/mtp/
H A DMtpDevice.h86 void* getThumbnail(MtpObjectHandle handle, int& outLength);
H A DMtpDataPacket.h119 void* getData(int& outLength) const;
H A DMtpDataPacket.cpp476 void* MtpDataPacket::getData(int& outLength) const {
482 outLength = length;
486 outLength = 0;
H A DMtpDevice.cpp394 void* MtpDevice::getThumbnail(MtpObjectHandle handle, int& outLength) { argument
402 return mData.getData(outLength);
405 outLength = 0;
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.cpp206 size_t outLength = mbuf->range_length(); local
209 outLength += sizeof(int32_t);
212 sp<ABuffer> buffer = new ABuffer(outLength);
/frameworks/base/libs/androidfw/
H A DAsset.cpp623 int _FileAsset::openFileDescriptor(off64_t* outStart, off64_t* outLength) const
634 *outLength = mMap->getDataLength();
641 *outLength = mLength;

Completed in 2420 milliseconds