Home
last modified time | relevance | path

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

/frameworks/base/native/android/
Dasset_manager.cpp217 int AAsset_openFileDescriptor(AAsset* asset, off_t* outStart, off_t* outLength) in AAsset_openFileDescriptor() argument
224 *outLength = off_t(outLength64); in AAsset_openFileDescriptor()
228 int AAsset_openFileDescriptor64(AAsset* asset, off64_t* outStart, off64_t* outLength) in AAsset_openFileDescriptor64() argument
230 return asset->mAsset->openFileDescriptor(outStart, outLength); in AAsset_openFileDescriptor64()
/frameworks/native/include/android/
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/include/androidfw/
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; } in openFileDescriptor() argument
/frameworks/av/media/libmediaplayerservice/nuplayer/
DGenericSource.cpp230 size_t outLength = mbuf->range_length(); in readBuffer() local
233 outLength += sizeof(int32_t); in readBuffer()
236 sp<ABuffer> buffer = new ABuffer(outLength); in readBuffer()
/frameworks/av/media/mtp/
DMtpDevice.h86 void* getThumbnail(MtpObjectHandle handle, int& outLength);
DMtpDataPacket.cpp476 void* MtpDataPacket::getData(int& outLength) const { in getData()
482 outLength = length; in getData()
486 outLength = 0; in getData()
DMtpDataPacket.h119 void* getData(int& outLength) const;
DMtpDevice.cpp394 void* MtpDevice::getThumbnail(MtpObjectHandle handle, int& outLength) { in getThumbnail() argument
402 return mData.getData(outLength); in getThumbnail()
405 outLength = 0; in getThumbnail()
/frameworks/base/libs/androidfw/
DAsset.cpp623 int _FileAsset::openFileDescriptor(off64_t* outStart, off64_t* outLength) const in openFileDescriptor()
634 *outLength = mMap->getDataLength(); in openFileDescriptor()
641 *outLength = mLength; in openFileDescriptor()