Home
last modified time | relevance | path

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

/DragonOS/kernel/src/net/socket/
H A Dinet.rs209 return Err(SystemError::ENOTCONN); in write()
371 return Err(SystemError::ENOTCONN); in write()
626 return (Err(SystemError::ENOTCONN), Endpoint::Ip(None)); in read()
640 return (Err(SystemError::ENOTCONN), Endpoint::Ip(None)); in read()
650 return (Err(SystemError::ENOTCONN), Endpoint::Ip(None)); in read()
660 return (Err(SystemError::ENOTCONN), Endpoint::Ip(None)); in read()
670 return (Err(SystemError::ENOTCONN), Endpoint::Ip(None)); in read()
674 return (Err(SystemError::ENOTCONN), Endpoint::Ip(None)); in read()
690 return Err(SystemError::ENOTCONN); in write()
717 return Err(SystemError::ENOTCONN); in write()
[all …]
H A Dunix.rs76 return Err(SystemError::ENOTCONN); in write()
187 return Err(SystemError::ENOTCONN); in write()
/DragonOS/kernel/src/common/
H A Derrno.h119 #define ENOTCONN 107 /* 套接字未连接 The socket is not connected. */ macro
/DragonOS/kernel/crates/system_error/src/
H A Dlib.rs224 ENOTCONN = 107, enumerator
/DragonOS/kernel/src/exception/
H A Dmanage.rs119 return Err(SystemError::ENOTCONN); in request_threaded_irq()