Home
last modified time | relevance | path

Searched refs:build_with (Results 1 – 22 of 22) sorted by relevance

/external/crosvm/sys_util/src/
Dpoll.rs318 pub fn build_with(fd_tokens: &[(&dyn AsRawFd, T)]) -> Result<EpollContext<T>> { in build_with() method
550 pub fn build_with(fd_tokens: &[(&dyn AsRawFd, T)]) -> Result<PollContext<T>> { in build_with() method
706 let ctx: PollContext<u32> = PollContext::build_with(&[(&evt1, 1), (&evt2, 2)]).unwrap(); in poll_context()
/external/crosvm/base/src/
Dwait_context.rs73 pub fn build_with(triggers: &[(&dyn AsRawDescriptor, T)]) -> Result<WaitContext<T>> { in build_with() method
/external/crosvm/devices/src/virtio/
Drng.rs76 let wait_ctx: WaitContext<Token> = match WaitContext::build_with(&[ in run()
Dtpm.rs114 let wait_ctx = match WaitContext::build_with(&[ in run()
Dp9.rs120 WaitContext::build_with(&[(&queue_evt, Token::QueueReady), (&kill_evt, Token::Kill)]) in run()
Dpmem.rs174 let wait_ctx: WaitContext<Token> = match WaitContext::build_with(&[ in run()
Dconsole.rs239 let wait_ctx: WaitContext<Token> = match WaitContext::build_with(&[ in run()
Dnet.rs342 let wait_ctx: WaitContext<Token> = WaitContext::build_with(&[ in run()
Dblock.rs397 let wait_ctx: WaitContext<Token> = match WaitContext::build_with(&[ in run()
Dwl.rs1514 let wait_ctx: WaitContext<Token> = match WaitContext::build_with(&[ in run()
/external/crosvm/devices/src/virtio/vhost/
Dworker.rs109 WaitContext::build_with(&[(&self.kill_evt, Token::Kill)]) in run()
/external/crosvm/devices/src/virtio/fs/
Dworker.rs216 WaitContext::build_with(&[(&queue_evt, Token::QueueReady), (&kill_evt, Token::Kill)]) in run()
/external/crosvm/devices/src/virtio/video/
Dworker.rs274 let wait_ctx: WaitContext<Token> = WaitContext::build_with(&[ in run()
/external/crosvm/devices/src/
Dbat.rs152 let wait_ctx: WaitContext<Token> = match WaitContext::build_with(&[ in command_monitor()
Dpit.rs903 WaitContext::build_with(&[(&self.fd, Token::TimerExpire), (&kill_evt, Token::Kill)]) in run()
/external/rust/crates/regex-automata/src/nfa/
Dcompiler.rs87 self.build_with(&mut Compiler::new(), &mut nfa, expr)?; in build()
104 pub fn build_with( in build_with() method
/external/crosvm/devices/src/virtio/input/
Dmod.rs462 let wait_ctx: WaitContext<Token> = match WaitContext::build_with(&[ in run()
/external/crosvm/devices/src/virtio/snd/vios_backend/
Dshm_vios.rs484 let wait_ctx: WaitContext<Token> = WaitContext::build_with(&[ in spawn_recv_thread()
/external/crosvm/src/plugin/
Dmod.rs719 WaitContext::build_with(&[(&exit_evt, Token::Exit), (&sigchld_fd, Token::ChildSignal)]) in run_config()
/external/crosvm/devices/src/virtio/gpu/
Dmod.rs702 let wait_ctx: WaitContext<Token> = match WaitContext::build_with(&[ in run()
/external/crosvm/io_uring/src/
During.rs1024 let ctx: PollContext<u64> = PollContext::build_with(&[(&uring, 1)]).unwrap(); in write_one_submit_poll()
/external/crosvm/src/
Dlinux.rs2790 let wait_ctx = WaitContext::build_with(&[ in run_control()