Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/audio/
DCarAudioDeviceInfo.java128 void setCurrentGain(int gainInMillibels) { in setCurrentGain() argument
130 if (gainInMillibels < mMinGain) { in setCurrentGain()
131 gainInMillibels = mMinGain; in setCurrentGain()
132 } else if (gainInMillibels > mMaxGain) { in setCurrentGain()
133 gainInMillibels = mMaxGain; in setCurrentGain()
148 new int[] { gainInMillibels }, in setCurrentGain()
159 mCurrentGain = gainInMillibels; in setCurrentGain()
DCarVolumeGroup.java161 int gainInMillibels = getGainForIndex(gainIndex); in setCurrentGainIndex() local
164 gainInMillibels, gainIndex); in setCurrentGainIndex() local
168 info.setCurrentGain(gainInMillibels); in setCurrentGainIndex()
DCarAudioService.java764 @AttributeUsage int usage, int gainInMillibels) { in createAudioPatch() argument
767 return createAudioPatchLocked(sourceAddress, usage, gainInMillibels); in createAudioPatch()
780 @AttributeUsage int usage, int gainInMillibels) { in createAudioPatchLocked() argument
813 audioGain.channelMask(), new int[] { gainInMillibels }, 0); in createAudioPatchLocked()
/packages/services/Car/car-lib/src/android/car/media/
DICarAudio.aidl39 CarAudioPatchHandle createAudioPatch(in String sourceAddress, int usage, int gainInMillibels); in createAudioPatch() argument
DCarAudioManager.java400 @AudioAttributes.AttributeUsage int usage, int gainInMillibels) { in createAudioPatch() argument
402 return mService.createAudioPatch(sourceAddress, usage, gainInMillibels); in createAudioPatch()
/packages/services/Car/car-test-lib/src/android/car/testapi/
DFakeCarAudioService.java72 int gainInMillibels) { in createAudioPatch() argument