Home
last modified time | relevance | path

Searched refs:mIndexCur (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/services/audiopolicy/engine/common/include/
DVolumeCurve.h99 if (mIndexCur.find(device) == end(mIndexCur)) { in getVolumeIndex()
102 return mIndexCur.at(device); in getVolumeIndex()
106 virtual void clearCurrentVolumeIndex() { mIndexCur.clear(); } in clearCurrentVolumeIndex()
109 mIndexCur[device] = index; in addCurrentVolumeIndex()
119 return mIndexCur.find(device) != end(mIndexCur); in hasVolumeIndexForDevice()
187 std::map<audio_devices_t, int> mIndexCur; /**< current volume index per device. */ variable
/frameworks/av/services/audiopolicy/engine/common/src/
DVolumeCurve.cpp102 for (const auto &pair : mIndexCur) { in dump()