Home
last modified time | relevance | path

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

/aosp_15_r20/external/crosvm/win_audio/src/
H A Dlib.rs50 pub trait WinStreamSourceGenerator: Send + Sync { trait
54 impl WinStreamSourceGenerator for WinAudioStreamSourceGenerator {
60 impl WinStreamSourceGenerator for NoopStreamSourceGenerator {
66 impl WinStreamSourceGenerator for FileStreamSourceGenerator {
/aosp_15_r20/external/crosvm/devices/src/virtio/snd/sys/
H A Dwindows.rs35 use win_audio::WinStreamSourceGenerator;
53 pub(crate) type SysAudioStreamSourceGenerator = Box<dyn WinStreamSourceGenerator>;
/aosp_15_r20/external/crosvm/win_audio/src/win_audio_impl/
H A Dasync_stream.rs518 use crate::WinStreamSourceGenerator;
578 let stream_source_generator: Box<dyn WinStreamSourceGenerator> = in test_async_capture()