Searched refs:connect (Results 1 – 7 of 7) sorted by relevance
/DragonOS-0.1.9/kernel/src/driver/input/serio/ |
D | serio_driver.rs | 36 fn connect(&self, device: &Arc<dyn SerioDevice>) -> Result<(), SystemError>; in connect() method
|
D | subsys.rs | 77 return pdrv.connect(&pdev); in probe()
|
/DragonOS-0.1.9/kernel/src/net/socket/ |
D | sockets.rs | 207 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()
|
D | mod.rs | 116 fn connect(&mut self, _endpoint: Endpoint) -> Result<(), SystemError> { in connect() method
|
/DragonOS-0.1.9/kernel/src/driver/input/ps2_mouse/ |
D | ps_mouse_driver.rs | 237 fn connect(&self, device: &Arc<dyn SerioDevice>) -> Result<(), system_error::SystemError> { in connect() method
|
/DragonOS-0.1.9/kernel/src/net/ |
D | syscall.rs | 202 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/ |
D | mod.rs | 498 Self::connect(args[0], addr, addrlen) in handle()
|