Home
last modified time | relevance | path

Searched refs:outName (Results 1 – 24 of 24) sorted by relevance

/frameworks/compile/slang/tests/P_reduce_general_accumulator/
Dgen-accumulator.pl57 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/
DJniCodeEmitter.java845 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/
DCodecServiceRegistrant.cpp584 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/
DGraphicBufferMapper.cpp234 status_t GraphicBufferMapper::getName(buffer_handle_t bufferHandle, std::string* outName) { in getName() argument
235 return mMapper->getName(bufferHandle, outName); in getName()
DGralloc5.cpp753 status_t Gralloc5Mapper::getName(buffer_handle_t bufferHandle, std::string *outName) const { in getName()
756 *outName = *value; in getName()
DGralloc4.cpp537 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/
DGraphicBufferMapper.h131 status_t getName(buffer_handle_t bufferHandle, std::string* outName);
/frameworks/native/libs/ui/include/ui/
DGraphicBufferMapper.h131 status_t getName(buffer_handle_t bufferHandle, std::string* outName);
DGralloc5.h68 std::string *outName) const override;
DGralloc4.h72 status_t getName(buffer_handle_t bufferHandle, std::string* outName) const override;
/frameworks/base/media/java/android/mtp/
DMtpDatabase.java756 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/
DResourceTypes.cpp4512 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/
DGralloc4.cpp952 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/
Dclient.cpp340 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/
DHWC2.h120 [[nodiscard]] virtual hal::Error getName(std::string* outName) const = 0;
214 hal::Error getName(std::string* outName) const override;
DAidlComposerHal.h101 Error getDisplayName(Display display, std::string* outName) override;
DComposerHal.h140 virtual Error getDisplayName(Display display, std::string* outName) = 0;
DHWC2.cpp251 Error Display::getName(std::string* outName) const in getName()
253 auto intError = mComposer.getDisplayName(mId, outName); in getName()
DHidlComposerHal.h202 Error getDisplayName(Display display, std::string* outName) override;
DHidlComposerHal.cpp499 Error HidlComposer::getDisplayName(Display display, std::string* outName) { in getDisplayName() argument
507 *outName = tmpName.c_str(); in getDisplayName()
DAidlComposerHal.cpp558 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/
DGralloc4.h266 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/
DXMLNode.cpp1196 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/
DResourceTypes.h1992 bool getResourceName(uint32_t resID, bool allowUtf8, resource_name* outName) const;
2168 String16* outName,