Home
last modified time | relevance | path

Searched refs:curvePoints (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/services/audiopolicy/engine/common/src/
DVolumeCurve.cpp80 void VolumeCurve::dump(String8 *dst, int spaces, bool curvePoints) const in dump()
82 if (!curvePoints) { in dump()
93 void VolumeCurves::dump(String8 *dst, int spaces, bool curvePoints) const in dump()
95 if (!curvePoints) { in dump()
DEngineBase.cpp133 for (auto &point : configCurve.curvePoints) { in loadAudioPolicyEngineConfig()
/frameworks/av/services/audiopolicy/engine/common/include/
DVolumeCurve.h61 void dump(String8 *dst, int spaces = 0, bool curvePoints = false) const;
183 void dump(String8 *dst, int spaces = 0, bool curvePoints = false) const override;
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
DIVolumeCurves.h43 virtual void dump(String8 *dst, int spaces = 0, bool curvePoints = false) const = 0;
/frameworks/av/services/audiopolicy/engine/config/src/
DEngineConfig.cpp439 CurvePoints curvePoints; in deserialize() local
456 curvePoints.push_back({point[0], point[1]}); in deserialize()
459 volumes.push_back({ deviceCategory, curvePoints }); in deserialize()
546 CurvePoints curvePoints; in deserializeLegacyVolume() local
564 curvePoints.push_back({point[0], point[1]}); in deserializeLegacyVolume()
567 legacyVolumes[streamTypeLiteral].push_back({ deviceCategoryLiteral, curvePoints }); in deserializeLegacyVolume()
/frameworks/av/services/audiopolicy/engine/config/include/
DEngineConfig.h57 CurvePoints curvePoints; member