Home
last modified time | relevance | path

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

/frameworks/base/cmds/media/src/com/android/commands/media/
DVolumeCtrl.java71 int volIndex = 5; in run() local
95 volIndex = Integer.decode(cmd.nextArgRequired()).intValue(); in run()
97 log(LOG_V, "will set volume to index=" + volIndex); in run()
140 if ((volIndex > audioService.getStreamMaxVolume(stream)) in run()
141 || (volIndex < audioService.getStreamMinVolume(stream))) { in run()
143 + "(should be in [%d..%d])", volIndex, stream, in run()
155 audioService.setStreamVolume(stream, volIndex, flag, pack/*callingPackage*/); in run()