/frameworks/compile/slang/tests/P_reduce_general_accumulator/ |
D | gen-accumulator.pl | 57 my $outName = "${reduceName}_out"; 59 … reduce(${reduceName}) accumulator(${accumName}) combiner(${combName}) outconverter(${outName})\n"; 63 print "static void ${outName}(int *out, const ${resultName} *accum) { }\n";
|
/frameworks/native/opengl/tools/glgen/src/ |
D | JniCodeEmitter.java | 845 String outName = "android_" + jfunc.getName(); in emitJniCode() local 848 (outName.endsWith("Pointer") || outName.endsWith("PointerOES") || in emitJniCode() 849 outName.endsWith("glDrawElements") || in emitJniCode() 850 outName.endsWith("glDrawRangeElements") || in emitJniCode() 851 outName.endsWith("glTexImage2D") || in emitJniCode() 852 outName.endsWith("glTexSubImage2D") || in emitJniCode() 853 outName.endsWith("glCompressedTexImage2D") || in emitJniCode() 854 outName.endsWith("glCompressedTexSubImage2D") || in emitJniCode() 855 outName.endsWith("glTexImage3D") || in emitJniCode() 856 outName.endsWith("glTexSubImage3D") || in emitJniCode() [all …]
|
/frameworks/av/media/module/codecserviceregistrant/ |
D | CodecServiceRegistrant.cpp | 584 C2String outName = "(unknown)"; in getName() local 586 ScopedAStatus transResult = mAidlConfigurable->getName(&outName); in getName() 592 [&outName](const hidl_string& name) { in getName() 593 outName = name.c_str(); in getName() 599 return outName; in getName()
|
/frameworks/native/libs/ui/ |
D | GraphicBufferMapper.cpp | 234 status_t GraphicBufferMapper::getName(buffer_handle_t bufferHandle, std::string* outName) { in getName() argument 235 return mMapper->getName(bufferHandle, outName); in getName()
|
D | Gralloc5.cpp | 753 status_t Gralloc5Mapper::getName(buffer_handle_t bufferHandle, std::string *outName) const { in getName() 756 *outName = *value; in getName()
|
D | Gralloc4.cpp | 537 status_t Gralloc4Mapper::getName(buffer_handle_t bufferHandle, std::string* outName) const { in getName() 538 return get(bufferHandle, gralloc4::MetadataType_Name, gralloc4::decodeName, outName); in getName()
|
/frameworks/native/libs/ui/include_vndk/ui/ |
D | GraphicBufferMapper.h | 131 status_t getName(buffer_handle_t bufferHandle, std::string* outName);
|
/frameworks/native/libs/ui/include/ui/ |
D | GraphicBufferMapper.h | 131 status_t getName(buffer_handle_t bufferHandle, std::string* outName);
|
D | Gralloc5.h | 68 std::string *outName) const override;
|
D | Gralloc4.h | 72 status_t getName(buffer_handle_t bufferHandle, std::string* outName) const override;
|
/frameworks/base/media/java/android/mtp/ |
D | MtpDatabase.java | 756 char[] outName, long[] outCreatedModified) { in getObjectInfo() argument 766 obj.getName().getChars(0, nameLen, outName, 0); in getObjectInfo() 767 outName[nameLen] = 0; in getObjectInfo()
|
/frameworks/base/libs/androidfw/ |
D | ResourceTypes.cpp | 4512 bool ResTable::getResourceName(uint32_t resID, bool allowUtf8, resource_name* outName) const in getResourceName() 4549 outName->package = grp->name.c_str(); in getResourceName() 4550 outName->packageLen = grp->name.size(); in getResourceName() 4552 outName->type8 = UnpackOptionalString(entry.typeStr.string8(), &outName->typeLen); in getResourceName() 4553 outName->name8 = UnpackOptionalString(entry.keyStr.string8(), &outName->nameLen); in getResourceName() 4555 outName->type8 = NULL; in getResourceName() 4556 outName->name8 = NULL; in getResourceName() 4558 if (outName->type8 == NULL) { in getResourceName() 4559 outName->type = UnpackOptionalString(entry.typeStr.string16(), &outName->typeLen); in getResourceName() 4561 if (outName->type == NULL) { in getResourceName() [all …]
|
/frameworks/native/libs/gralloc/types/ |
D | Gralloc4.cpp | 952 status_t encodeName(const std::string& name, hidl_vec<uint8_t>* outName) { in encodeName() argument 953 return encodeMetadata(MetadataType_Name, name, outName, encodeString); in encodeName() 956 status_t decodeName(const hidl_vec<uint8_t>& name, std::string* outName) { in decodeName() argument 957 return decodeMetadata(MetadataType_Name, name, outName, decodeString); in decodeName()
|
/frameworks/av/media/codec2/hal/client/ |
D | client.cpp | 340 C2String outName; in __anonc4b1d3e50402() local 342 [&outName](const hidl_string& name) { in __anonc4b1d3e50402() 343 outName = name.c_str(); in __anonc4b1d3e50402() 345 return transStatus.isOk() ? outName : ""; in __anonc4b1d3e50402() 609 std::string outName; in __anonc4b1d3e50a02() local 610 ndk::ScopedAStatus status = base->getName(&outName); in __anonc4b1d3e50a02() 611 return status.isOk() ? outName : ""; in __anonc4b1d3e50a02()
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
D | HWC2.h | 120 [[nodiscard]] virtual hal::Error getName(std::string* outName) const = 0; 214 hal::Error getName(std::string* outName) const override;
|
D | AidlComposerHal.h | 101 Error getDisplayName(Display display, std::string* outName) override;
|
D | ComposerHal.h | 140 virtual Error getDisplayName(Display display, std::string* outName) = 0;
|
D | HWC2.cpp | 251 Error Display::getName(std::string* outName) const in getName() 253 auto intError = mComposer.getDisplayName(mId, outName); in getName()
|
D | HidlComposerHal.h | 202 Error getDisplayName(Display display, std::string* outName) override;
|
D | HidlComposerHal.cpp | 499 Error HidlComposer::getDisplayName(Display display, std::string* outName) { in getDisplayName() argument 507 *outName = tmpName.c_str(); in getDisplayName()
|
D | AidlComposerHal.cpp | 558 Error AidlComposer::getDisplayName(Display display, std::string* outName) { in getDisplayName() argument 559 const auto status = mAidlComposerClient->getDisplayName(translate<int64_t>(display), outName); in getDisplayName()
|
/frameworks/native/libs/gralloc/types/include/gralloctypes/ |
D | Gralloc4.h | 266 status_t encodeName(const std::string& name, android::hardware::hidl_vec<uint8_t>* outName); 267 status_t decodeName(const android::hardware::hidl_vec<uint8_t>& name, std::string* outName);
|
/frameworks/base/tools/aapt/ |
D | XMLNode.cpp | 1196 static void splitName(const char* name, String16* outNs, String16* outName) in splitName() argument 1204 *outName = String16(name); in splitName() 1207 *outName = String16(p+1); in splitName()
|
/frameworks/base/libs/androidfw/include/androidfw/ |
D | ResourceTypes.h | 1992 bool getResourceName(uint32_t resID, bool allowUtf8, resource_name* outName) const; 2168 String16* outName,
|