Home
last modified time | relevance | path

Searched refs:streamName (Results 1 – 14 of 14) sorted by relevance

/aosp12/frameworks/wilhelm/src/itf/
H A DIStreamInformation.cpp178 char streamName[16]; // large enough for the fixed format in next line in IStreamInformation_QueryStreamName() local
179 snprintf(streamName, sizeof(streamName), "stream%u", streamIndex); in IStreamInformation_QueryStreamName()
180 size_t actualNameLength = strlen(streamName); in IStreamInformation_QueryStreamName()
187 memcpy(pName, streamName, availableNameLength); in IStreamInformation_QueryStreamName()
190 memcpy(pName, streamName, availableNameLength); in IStreamInformation_QueryStreamName()
193 memcpy(pName, streamName, actualNameLength + 1); in IStreamInformation_QueryStreamName()
/aosp12/system/tools/hidl/
H A DNamedType.cpp49 const std::string &streamName, in emitDump() argument
51 emitDumpWithMethod(out, streamName, fqName().cppNamespace() + "::toString", name); in emitDump()
H A DType.cpp432 const std::string &streamName, in emitDump() argument
434 emitDumpWithMethod(out, streamName, "::android::hardware::toString", name); in emitDump()
439 const std::string &streamName, in emitDumpWithMethod() argument
442 out << streamName in emitDumpWithMethod()
452 const std::string &streamName, in emitJavaDump() argument
454 out << streamName << ".append(" << name << ");\n"; in emitJavaDump()
H A DEnumType.h115 const std::string &streamName,
218 const std::string &streamName,
223 const std::string &streamName,
H A DScalarType.cpp241 const std::string &streamName, in emitHexDump() argument
243 out << streamName << " += toHexString(" << name << ");\n"; in emitHexDump()
H A DType.h225 const std::string &streamName,
230 const std::string &streamName,
347 const std::string &streamName,
H A DEnumType.cpp630 const std::string &streamName, in emitJavaDump() argument
632 out << streamName << ".append(" << fqName().javaName() << ".toString(" in emitJavaDump()
943 const std::string &streamName, in emitDump() argument
945 out << streamName << " += "<< getEnumType()->fqName().cppNamespace() in emitDump()
952 const std::string &streamName, in emitJavaDump() argument
954 out << streamName << ".append(" << getEnumType()->fqName().javaName() << ".dumpBitfield(" in emitJavaDump()
H A DNamedType.h47 const std::string &streamName,
H A DScalarType.h87 const std::string &streamName,
H A DArrayType.cpp278 const std::string &streamName, in emitJavaDump() argument
280 out << streamName << ".append(java.util.Arrays." in emitJavaDump()
H A DArrayType.h84 const std::string &streamName,
/aosp12/packages/services/Car/cpp/computepipe/runner/stream_manager/include/
H A DStreamManager.h58 explicit StreamManager(std::string streamName, const proto::PacketType& type) in StreamManager() argument
59 : mName(streamName), mType(type) { in StreamManager()
/aosp12/frameworks/av/media/libeffects/config/src/
H A DEffectsConfig.cpp128 bool stringToStreamType(const char *streamName, Type* type) in stringToStreamType() argument
131 if (strcmp(streamNamePair.second, streamName) == 0) { in stringToStreamType()
140 bool stringToStreamType(const char *streamName, audio_devices_t* type) { in stringToStreamType() argument
141 return DeviceConverter::fromString(streamName, *type); in stringToStreamType()
/aosp12/frameworks/base/services/core/java/com/android/server/media/
H A DVolumeCtrl.java90 "will control stream=" + stream + " (" + streamName(stream) + ")"); in run()
164 static String streamName(int stream) { in streamName() method in VolumeCtrl