Home
last modified time | relevance | path

Searched refs:ENOTCONN (Results 1 – 5 of 5) sorted by relevance

/DragonOS-0.1.8/kernel/src/common/
Derrno.h119 #define ENOTCONN 106 /* 套接字未连接 The socket is not connected. */ macro
/DragonOS-0.1.8/user/libs/libc/src/include/export/
Derrno.h125 #define ENOTCONN 106 /* 套接字未连接 The socket is not connected. */ macro
/DragonOS-0.1.8/kernel/src/net/
Dsocket.rs386 return Err(SystemError::ENOTCONN); in write()
515 return Err(SystemError::ENOTCONN); in write()
720 return (Err(SystemError::ENOTCONN), Endpoint::Ip(None)); in read()
731 return (Err(SystemError::ENOTCONN), Endpoint::Ip(None)); in read()
744 return (Err(SystemError::ENOTCONN), Endpoint::Ip(None)); in read()
747 return (Err(SystemError::ENOTCONN), Endpoint::Ip(None)); in read()
752 return (Err(SystemError::ENOTCONN), Endpoint::Ip(None)); in read()
783 return Err(SystemError::ENOTCONN); in write()
915 let remote_ep = socket.remote_endpoint().ok_or(SystemError::ENOTCONN)?; in accept()
/DragonOS-0.1.8/docs/userland/libc/apis/api-list/
Derrno.md129 #define ENOTCONN 56 /* 套接字未连接 The socket is not connected.*/
/DragonOS-0.1.8/kernel/src/syscall/
Dmod.rs248 ENOTCONN = 106, enumerator