Searched refs:outLength (Results 1 – 13 of 13) sorted by relevance
/frameworks/minikin/libs/minikin/ |
D | LocaleListCache.cpp | 43 size_t outLength = 0; in toLanguageTag() local 45 outLength = uloc_canonicalize(localeString.c_str(), output, outSize, &uErr); in toLanguageTag() 54 if (outLength == 0 || (outLength == 5 && output[0] == '_')) { in toLanguageTag() 58 std::string buf(output, outLength); in toLanguageTag() 59 outLength = (size_t)snprintf(output, outSize, "und%s", buf.c_str()); in toLanguageTag() 60 return outLength; in toLanguageTag() 74 outLength = uloc_toLanguageTag(likelyChars, output, outSize, false, &uErr); in toLanguageTag() 81 return outLength; in toLanguageTag()
|
/frameworks/base/native/android/ |
D | asset_manager.cpp | 195 int AAsset_openFileDescriptor(AAsset* asset, off_t* outStart, off_t* outLength) in AAsset_openFileDescriptor() argument 202 *outLength = off_t(outLength64); in AAsset_openFileDescriptor() 206 int AAsset_openFileDescriptor64(AAsset* asset, off64_t* outStart, off64_t* outLength) in AAsset_openFileDescriptor64() argument 208 return asset->mAsset->openFileDescriptor(outStart, outLength); in AAsset_openFileDescriptor64()
|
/frameworks/native/include/android/ |
D | asset_manager.h | 198 int AAsset_openFileDescriptor(AAsset* asset, off_t* outStart, off_t* outLength) 210 int AAsset_openFileDescriptor64(AAsset* asset, off64_t* outStart, off64_t* outLength);
|
/frameworks/base/libs/androidfw/include/androidfw/ |
D | Asset.h | 123 virtual int openFileDescriptor(off64_t* outStart, off64_t* outLength) const = 0; 281 int openFileDescriptor(off64_t* outStart, off64_t* outLength) const override;
|
/frameworks/base/libs/androidfw/ |
D | Asset.cpp | 667 int _FileAsset::openFileDescriptor(off64_t* outStart, off64_t* outLength) const in openFileDescriptor() 672 *outLength = mMap->length(); in openFileDescriptor() 689 *outLength = mMap->length(); in openFileDescriptor() 696 *outLength = mLength; in openFileDescriptor()
|
/frameworks/av/media/mtp/tests/MtpFuzzer/ |
D | mtp_device_fuzzer.cpp | 95 int32_t outLength = 0; in LLVMFuzzerTestOneInput() local 97 outLength); in LLVMFuzzerTestOneInput()
|
/frameworks/av/media/mtp/ |
D | MtpDataPacket.h | 127 void* getData(int* outLength) const;
|
D | MtpDevice.h | 105 void* getThumbnail(MtpObjectHandle handle, int& outLength);
|
D | MtpDataPacket.cpp | 639 void* MtpDataPacket::getData(int* outLength) const { in getData() 645 *outLength = length; in getData() 649 *outLength = 0; in getData()
|
D | MtpDevice.cpp | 450 void* MtpDevice::getThumbnail(MtpObjectHandle handle, int& outLength) { in getThumbnail() argument 458 return mData.getData(&outLength); in getThumbnail() 461 outLength = 0; in getThumbnail()
|
/frameworks/native/libs/binder/ndk/include_cpp/android/ |
D | binder_parcel_utils.h | 436 int32_t* outLength) { 440 *outLength = static_cast<int32_t>(element.size()); 464 int32_t* outLength) { 470 *outLength = -1; 474 *outLength = static_cast<int32_t>(element->size()); 536 int32_t* outLength) { 540 *outLength = static_cast<int32_t>(element.size()); 563 int32_t* outLength) { 569 *outLength = -1; 573 *outLength = static_cast<int32_t>(element->size());
|
/frameworks/native/libs/binder/ndk/include_ndk/android/ |
D | binder_parcel.h | 164 int32_t* outLength);
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
D | GenericSource.cpp | 1197 size_t outLength = mb->range_length(); in mediaBufferToABuffer() local 1200 outLength += sizeof(int32_t); in mediaBufferToABuffer() 1223 ab = new ABuffer(outLength); in mediaBufferToABuffer()
|