/external/crosvm/sys_util/src/ |
D | poll.rs | 318 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/ |
D | wait_context.rs | 73 pub fn build_with(triggers: &[(&dyn AsRawDescriptor, T)]) -> Result<WaitContext<T>> { in build_with() method
|
/external/crosvm/devices/src/virtio/ |
D | rng.rs | 76 let wait_ctx: WaitContext<Token> = match WaitContext::build_with(&[ in run()
|
D | tpm.rs | 114 let wait_ctx = match WaitContext::build_with(&[ in run()
|
D | p9.rs | 120 WaitContext::build_with(&[(&queue_evt, Token::QueueReady), (&kill_evt, Token::Kill)]) in run()
|
D | pmem.rs | 174 let wait_ctx: WaitContext<Token> = match WaitContext::build_with(&[ in run()
|
D | console.rs | 239 let wait_ctx: WaitContext<Token> = match WaitContext::build_with(&[ in run()
|
D | net.rs | 342 let wait_ctx: WaitContext<Token> = WaitContext::build_with(&[ in run()
|
D | block.rs | 397 let wait_ctx: WaitContext<Token> = match WaitContext::build_with(&[ in run()
|
D | wl.rs | 1514 let wait_ctx: WaitContext<Token> = match WaitContext::build_with(&[ in run()
|
/external/crosvm/devices/src/virtio/vhost/ |
D | worker.rs | 109 WaitContext::build_with(&[(&self.kill_evt, Token::Kill)]) in run()
|
/external/crosvm/devices/src/virtio/fs/ |
D | worker.rs | 216 WaitContext::build_with(&[(&queue_evt, Token::QueueReady), (&kill_evt, Token::Kill)]) in run()
|
/external/crosvm/devices/src/virtio/video/ |
D | worker.rs | 274 let wait_ctx: WaitContext<Token> = WaitContext::build_with(&[ in run()
|
/external/crosvm/devices/src/ |
D | bat.rs | 152 let wait_ctx: WaitContext<Token> = match WaitContext::build_with(&[ in command_monitor()
|
D | pit.rs | 903 WaitContext::build_with(&[(&self.fd, Token::TimerExpire), (&kill_evt, Token::Kill)]) in run()
|
/external/rust/crates/regex-automata/src/nfa/ |
D | compiler.rs | 87 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/ |
D | mod.rs | 462 let wait_ctx: WaitContext<Token> = match WaitContext::build_with(&[ in run()
|
/external/crosvm/devices/src/virtio/snd/vios_backend/ |
D | shm_vios.rs | 484 let wait_ctx: WaitContext<Token> = WaitContext::build_with(&[ in spawn_recv_thread()
|
/external/crosvm/src/plugin/ |
D | mod.rs | 719 WaitContext::build_with(&[(&exit_evt, Token::Exit), (&sigchld_fd, Token::ChildSignal)]) in run_config()
|
/external/crosvm/devices/src/virtio/gpu/ |
D | mod.rs | 702 let wait_ctx: WaitContext<Token> = match WaitContext::build_with(&[ in run()
|
/external/crosvm/io_uring/src/ |
D | uring.rs | 1024 let ctx: PollContext<u64> = PollContext::build_with(&[(&uring, 1)]).unwrap(); in write_one_submit_poll()
|
/external/crosvm/src/ |
D | linux.rs | 2790 let wait_ctx = WaitContext::build_with(&[ in run_control()
|