Searched refs:connect (Results 1 – 10 of 10) sorted by relevance
/DragonOS/user/apps/test_lo/src/ |
H A D | main.rs | 6 socket.connect("127.0.0.1:34254")?; in main()
|
/DragonOS/user/apps/test_socket/src/ |
H A D | test_unix_stream.rs | 11 let mut stream = UnixStream::connect(SOCKET_PATH)?; in client()
|
/DragonOS/kernel/src/driver/input/serio/ |
H A D | serio_driver.rs | 37 fn connect(&self, device: &Arc<dyn SerioDevice>) -> Result<(), SystemError>; in connect() method
|
H A D | subsys.rs | 78 return pdrv.connect(&pdev); in probe()
|
/DragonOS/kernel/src/net/socket/ |
H A D | unix.rs | 84 fn connect(&mut self, endpoint: Endpoint) -> Result<(), SystemError> { in connect() method 195 fn connect(&mut self, endpoint: Endpoint) -> Result<(), SystemError> { in connect() method
|
H A D | inet.rs | 214 fn connect(&mut self, _endpoint: Endpoint) -> Result<(), SystemError> { in connect() method 421 fn connect(&mut self, endpoint: Endpoint) -> Result<(), SystemError> { in connect() method 743 fn connect(&mut self, endpoint: Endpoint) -> Result<(), SystemError> { in connect() method 760 match socket.connect(inner_iface.context(), ip, temp_port) { in connect()
|
H A D | mod.rs | 124 fn connect(&mut self, _endpoint: Endpoint) -> Result<(), SystemError>; in connect() method
|
/DragonOS/kernel/src/net/ |
H A D | syscall.rs | 85 .connect(Endpoint::Inode(Some(inode1.clone())))?; in socketpair() 88 .connect(Endpoint::Inode(Some(inode0.clone())))?; in socketpair() 197 pub fn connect(fd: usize, addr: *const SockAddr, addrlen: usize) -> Result<usize, SystemError> { in connect() method 203 socket.connect(endpoint)?; in connect()
|
/DragonOS/kernel/src/driver/input/ps2_mouse/ |
H A D | ps_mouse_driver.rs | 238 fn connect(&self, device: &Arc<dyn SerioDevice>) -> Result<(), system_error::SystemError> { in connect() method
|
/DragonOS/kernel/src/syscall/ |
H A D | mod.rs | 494 Self::connect(args[0], addr, addrlen) in handle()
|