Home
last modified time | relevance | path

Searched refs:input_thread (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/crosvm/devices/src/virtio/console/
H A Dport.rs49 input_thread: Option<WorkerThread<InStreamType>>, field
75 input_thread: None, in new()
110 assert!(self.input_thread.is_none()); in start_input_thread()
117 self.input_thread = Some(thread); in start_input_thread()
122 if let Some(input_thread) = self.input_thread.take() { in stop_input_thread()
123 let input = input_thread.stop(); in stop_input_thread()
/aosp_15_r20/system/media/audio_utils/tests/
H A Dfifo_threads.cpp133 pthread_t input_thread; in main() local
134 int ok = pthread_create(&input_thread, (const pthread_attr_t *) NULL, input_routine, in main()