Home
last modified time | relevance | path

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

/DragonOS/user/apps/test_lo/src/
H A Dmain.rs6 socket.connect("127.0.0.1:34254")?; in main()
/DragonOS/user/apps/test_socket/src/
H A Dtest_unix_stream.rs11 let mut stream = UnixStream::connect(SOCKET_PATH)?; in client()
/DragonOS/kernel/src/driver/input/serio/
H A Dserio_driver.rs37 fn connect(&self, device: &Arc<dyn SerioDevice>) -> Result<(), SystemError>; in connect() method
H A Dsubsys.rs78 return pdrv.connect(&pdev); in probe()
/DragonOS/kernel/src/net/socket/
H A Dunix.rs84 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 Dinet.rs214 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 Dmod.rs124 fn connect(&mut self, _endpoint: Endpoint) -> Result<(), SystemError>; in connect() method
/DragonOS/kernel/src/net/
H A Dsyscall.rs85 .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 Dps_mouse_driver.rs238 fn connect(&self, device: &Arc<dyn SerioDevice>) -> Result<(), system_error::SystemError> { in connect() method
/DragonOS/kernel/src/syscall/
H A Dmod.rs459 Self::connect(args[0], addr, addrlen) in handle()