Home
last modified time | relevance | path

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

/frameworks/base/media/java/android/media/
DVolumeInfo.java49 private final int mVolIndex; field in VolumeInfo
64 mVolIndex = volIndex; in VolumeInfo()
146 return mVolIndex; in getVolumeIndex()
197 private int mVolIndex = INDEX_NOT_SET; field in VolumeInfo.Builder
233 mVolIndex = info.mVolIndex; in Builder()
259 mVolIndex = volIndex; in setVolumeIndex()
294 if (mVolIndex != INDEX_NOT_SET) { in build()
295 if (mMinVolIndex != INDEX_NOT_SET && mVolIndex < mMinVolIndex) { in build()
296 throw new IllegalArgumentException("Volume index:" + mVolIndex in build()
299 if (mMaxVolIndex != INDEX_NOT_SET && mVolIndex > mMaxVolIndex) { in build()
[all …]
/frameworks/base/services/core/java/com/android/server/audio/
DAudioServiceEvents.java178 final int mVolIndex; field in AudioServiceEvents.DeviceVolumeEvent
188 mVolIndex = index; in DeviceVolumeEvent()
199 .set(MediaMetrics.Property.INDEX, mVolIndex) in DeviceVolumeEvent()
210 .append(" index:").append(mVolIndex) in eventToString()