Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/panel/component/volume/domain/interactor/
DAudioSlidersInteractor.kt26 import com.android.systemui.volume.panel.component.volume.domain.model.SliderType in <lambda>()
47 val volumePanelSliders: StateFlow<List<SliderType>> = in <lambda>()
77 private fun MutableList<SliderType>.addSession(remoteMediaDeviceSession: MediaDeviceSession?) { in <lambda>()
79 add(SliderType.MediaDeviceCast(remoteMediaDeviceSession)) in <lambda>()
83 private fun MutableList<SliderType>.addStream(stream: Int) { in <lambda>()
84 add(SliderType.Stream(AudioStream(stream))) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/panel/component/volume/domain/model/
DSliderType.kt23 sealed interface SliderType { interface
26 data class Stream(val stream: AudioStream) : SliderType
29 data class MediaDeviceCast(val session: MediaDeviceSession) : SliderType
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/panel/component/volume/ui/viewmodel/
DAudioVolumeComponentViewModel.kt24 import com.android.systemui.volume.panel.component.volume.domain.model.SliderType in <lambda>()
98 is SliderType.Stream -> createStreamViewModel(type.stream) in <lambda>()
99 is SliderType.MediaDeviceCast -> in <lambda>()