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.h98 if (mIndexCur.find(device) == end(mIndexCur)) { in getVolumeIndex()
101 return mIndexCur.at(device); in getVolumeIndex()
105 virtual void clearCurrentVolumeIndex() { mIndexCur.clear(); } in clearCurrentVolumeIndex()
108 mIndexCur[device] = index; in addCurrentVolumeIndex()
118 return mIndexCur.find(device) != end(mIndexCur); in hasVolumeIndexForDevice()
186 std::map<audio_devices_t, int> mIndexCur; /**< current volume index per device. */ variable
/frameworks/av/services/audiopolicy/engine/common/src/
DVolumeCurve.cpp116 for (const auto &pair : mIndexCur) { in dump()