Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/audio/
DCarVolumeGroupMuting.java53 @NonNull AudioControlWrapper audioControlWrapper) { in CarVolumeGroupMuting() argument
57 mAudioControlWrapper = Objects.requireNonNull(audioControlWrapper, in CarVolumeGroupMuting()
59 requireGroupMutingSupported(audioControlWrapper); in CarVolumeGroupMuting()
63 private static void requireGroupMutingSupported(AudioControlWrapper audioControlWrapper) { in requireGroupMutingSupported() argument
64 if (audioControlWrapper in requireGroupMutingSupported()
DCarAudioZonesHelperLegacy.java72 AudioControlWrapperV1 audioControlWrapper, CarAudioSettings carAudioSettings, in CarAudioZonesHelperLegacy() argument
79 Objects.requireNonNull(audioControlWrapper, in CarAudioZonesHelperLegacy()
90 loadBusesForLegacyContexts(audioControlWrapper, carAudioContext); in CarAudioZonesHelperLegacy()
105 AudioControlWrapperV1 audioControlWrapper, in loadBusesForLegacyContexts() argument
112 int bus = audioControlWrapper.getBusForContext(legacyContext); in loadBusesForLegacyContexts()
DCarAudioService.java583 AudioControlWrapper audioControlWrapper = getAudioControlWrapperLocked(); in loadVolumeGroupConfigurationWithAudioControlLocked() local
584 if (!(audioControlWrapper instanceof AudioControlWrapperV1)) { in loadVolumeGroupConfigurationWithAudioControlLocked()
592 (AudioControlWrapperV1) audioControlWrapper, in loadVolumeGroupConfigurationWithAudioControlLocked()
639 AudioControlWrapper audioControlWrapper = getAudioControlWrapperLocked(); in setupDynamicRoutingLocked() local
641 if (audioControlWrapper.supportsFeature(AUDIOCONTROL_FEATURE_AUDIO_DUCKING)) { in setupDynamicRoutingLocked()
642 mCarDucking = new CarDucking(mCarAudioZones, audioControlWrapper); in setupDynamicRoutingLocked()
647 mCarVolumeGroupMuting = new CarVolumeGroupMuting(mCarAudioZones, audioControlWrapper); in setupDynamicRoutingLocked()
700 AudioControlWrapper audioControlWrapper = getAudioControlWrapperLocked(); in setupHalAudioFocusListenerLocked() local
701 if (!audioControlWrapper.supportsFeature(AUDIOCONTROL_FEATURE_AUDIO_FOCUS)) { in setupHalAudioFocusListenerLocked()
712 AudioControlWrapper audioControlWrapper = getAudioControlWrapperLocked(); in setupHalAudioGainCallbackLocked() local
[all …]
DCarAudioGainMonitor.java41 AudioControlWrapper audioControlWrapper, in CarAudioGainMonitor() argument
45 audioControlWrapper, "Audio Control Wrapper can not be null"); in CarAudioGainMonitor()
DCarDucking.java50 CarDucking(SparseArray<CarAudioZone> carAudioZones, AudioControlWrapper audioControlWrapper) { in CarDucking() argument
52 mAudioControlWrapper = Objects.requireNonNull(audioControlWrapper, in CarDucking()
/packages/services/Car/service/src/com/android/car/audio/hal/
DHalAudioFocus.java72 @NonNull AudioControlWrapper audioControlWrapper, in HalAudioFocus() argument
75 mAudioControlWrapper = Objects.requireNonNull(audioControlWrapper); in HalAudioFocus()