Home
last modified time | relevance | path

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

/frameworks/wilhelm/src/itf/
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()
/frameworks/av/media/libeffects/config/src/
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()
/frameworks/base/services/core/java/com/android/server/media/
DVolumeCtrl.java90 "will control stream=" + stream + " (" + streamName(stream) + ")"); in run()
164 static String streamName(int stream) { in streamName() method in VolumeCtrl