Home
last modified time | relevance | path

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

/frameworks/minikin/libs/minikin/
DLocaleListCache.cpp43 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/
Dasset_manager.cpp195 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/
Dasset_manager.h198 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/
DAsset.h123 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/
DAsset.cpp667 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/
Dmtp_device_fuzzer.cpp95 int32_t outLength = 0; in LLVMFuzzerTestOneInput() local
97 outLength); in LLVMFuzzerTestOneInput()
/frameworks/av/media/mtp/
DMtpDataPacket.h127 void* getData(int* outLength) const;
DMtpDevice.h105 void* getThumbnail(MtpObjectHandle handle, int& outLength);
DMtpDataPacket.cpp639 void* MtpDataPacket::getData(int* outLength) const { in getData()
645 *outLength = length; in getData()
649 *outLength = 0; in getData()
DMtpDevice.cpp450 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/
Dbinder_parcel_utils.h436 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/
Dbinder_parcel.h164 int32_t* outLength);
/frameworks/av/media/libmediaplayerservice/nuplayer/
DGenericSource.cpp1197 size_t outLength = mb->range_length(); in mediaBufferToABuffer() local
1200 outLength += sizeof(int32_t); in mediaBufferToABuffer()
1223 ab = new ABuffer(outLength); in mediaBufferToABuffer()