Home
last modified time | relevance | path

Searched refs:connect (Results 1 – 7 of 7) sorted by relevance

/DragonOS-0.1.9/kernel/src/driver/input/serio/
Dserio_driver.rs36 fn connect(&self, device: &Arc<dyn SerioDevice>) -> Result<(), SystemError>; in connect() method
Dsubsys.rs77 return pdrv.connect(&pdev); in probe()
/DragonOS-0.1.9/kernel/src/net/socket/
Dsockets.rs207 fn connect(&mut self, _endpoint: Endpoint) -> Result<(), SystemError> { in connect() method
413 fn connect(&mut self, endpoint: Endpoint) -> Result<(), SystemError> { in connect() method
676 fn connect(&mut self, endpoint: Endpoint) -> Result<(), SystemError> { in connect() method
690 match socket.connect(&mut inner_iface.context(), ip, temp_port) { in connect()
Dmod.rs116 fn connect(&mut self, _endpoint: Endpoint) -> Result<(), SystemError> { in connect() method
/DragonOS-0.1.9/kernel/src/driver/input/ps2_mouse/
Dps_mouse_driver.rs237 fn connect(&self, device: &Arc<dyn SerioDevice>) -> Result<(), system_error::SystemError> { in connect() method
/DragonOS-0.1.9/kernel/src/net/
Dsyscall.rs202 pub fn connect(fd: usize, addr: *const SockAddr, addrlen: usize) -> Result<usize, SystemError> { in connect() method
209 socket.connect(endpoint)?; in connect()
/DragonOS-0.1.9/kernel/src/syscall/
Dmod.rs498 Self::connect(args[0], addr, addrlen) in handle()