HomeSort by relevance Sort by last modified time
    Searched refs:volIndex (Results 1 - 2 of 2) sorted by null

  /frameworks/base/cmds/media/src/com/android/commands/media/
VolumeCtrl.java 71 int volIndex = 5;
95 volIndex = Integer.decode(cmd.nextArgRequired()).intValue();
97 log(LOG_V, "will set volume to index=" + volIndex);
140 if ((volIndex > audioService.getStreamMaxVolume(stream))
141 || (volIndex < audioService.getStreamMinVolume(stream))) {
143 + "(should be in [%d..%d])", volIndex, stream,
155 audioService.setStreamVolume(stream, volIndex, flag, pack/*callingPackage*/);
  /packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
Avrcp.java 596 int volIndex = convertToAudioStreamVolume(absVol);
600 && volIndex > mAbsVolThreshold) {
602 Log.v(TAG, "remote inital volume too high " + volIndex + ">"
609 mLocalVolume = volIndex;
614 if (mLocalVolume != volIndex && (msg.arg2 == AVRC_RSP_ACCEPT
617 mLocalVolume = volIndex;
619 if (mLastLocalVolume != volIndex) {
625 + mLastLocalVolume + " vs " + volIndex);
    [all...]

Completed in 634 milliseconds