Home
last modified time | relevance | path

Searched defs:SendError (Results 1 – 15 of 15) sorted by relevance

/external/rust/crates/oneshot-uniffi/src/
Derrors.rs11 pub struct SendError<T> { struct
15 unsafe impl<T: Send> Send for SendError<T> {} argument
16 unsafe impl<T: Sync> Sync for SendError<T> {} implementation
18 impl<T> SendError<T> { impl
57 impl<T> Drop for SendError<T> { implementation
68 impl<T> fmt::Display for SendError<T> { implementation
74 impl<T> fmt::Debug for SendError<T> { implementation
81 impl<T> std::error::Error for SendError<T> {} implementation
/external/rust/crates/h2/src/codec/
Derror.rs7 pub enum SendError { enum
56 impl error::Error for SendError {} implementation
58 impl fmt::Display for SendError { implementation
67 impl From<io::Error> for SendError { implementation
73 impl From<UserError> for SendError { implementation
/external/rust/crates/tokio/src/sync/mpsc/
Derror.rs8 pub struct SendError<T>(pub T); struct
10 impl<T> fmt::Debug for SendError<T> { implementation
16 impl<T> fmt::Display for SendError<T> { implementation
22 impl<T> Error for SendError<T> {} implementation
Dbounded.rs771 pub async fn reserve(&self) -> Result<Permit<'_, T>, SendError<()>> { in reserve() argument
856 pub async fn reserve_owned(self) -> Result<OwnedPermit<T>, SendError<()>> { in reserve_owned() argument
863 async fn reserve_inner(&self) -> Result<(), SendError<()>> { in reserve_inner() argument
/external/rust/crates/crossbeam-channel/src/
Derr.rs12 pub struct SendError<T>(pub T); struct
118 impl<T> fmt::Debug for SendError<T> { implementation
124 impl<T> fmt::Display for SendError<T> { implementation
130 impl<T: Send> error::Error for SendError<T> {} implementation
132 impl<T> SendError<T> { implementation
/external/rust/crates/futures-channel/src/mpsc/
Dmod.rs152 pub struct SendError { struct
153 kind: SendErrorKind, argument
174 impl fmt::Display for SendError { implementation
184 impl std::error::Error for SendError {} implementation
186 impl SendError { impl
239 pub fn into_send_error(self) -> SendError { in into_send_error()
405 fn poll_ready_nb(&self) -> Poll<Result<(), SendError>> { in poll_ready_nb() argument
615 fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), SendError>> { in poll_ready() argument
699 pub fn start_send(&mut self, msg: T) -> Result<(), SendError> { in start_send() argument
715 pub fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), SendError>> { in poll_ready() argument
[all …]
/external/openthread/src/core/net/
Dicmp6.cpp84 Error Icmp::SendError(Header::Type aType, Header::Code aCode, const MessageInfo &aMessageInfo, cons… in SendError() function in ot::Ip6::Icmp
96 Error Icmp::SendError(Header::Type aType, Header::Code aCode, const MessageInfo &aMessageInfo, cons… in SendError() function in ot::Ip6::Icmp
/external/sandboxed-api/sandboxed_api/sandbox2/network_proxy/
Dserver.cc104 void NetworkProxyServer::SendError(int saved_errno) { in SendError() function in sandbox2::NetworkProxyServer
/external/rust/crates/tokio/src/sync/
Dwatch.rs213 pub struct SendError<T>(pub T); struct
217 impl<T> fmt::Debug for SendError<T> { implementation
223 impl<T> fmt::Display for SendError<T> { implementation
229 impl<T> Error for SendError<T> {} implementation
Dbroadcast.rs227 pub struct SendError<T>(pub T); struct
229 impl<T> fmt::Display for SendError<T> { implementation
235 impl<T: fmt::Debug> std::error::Error for SendError<T> {} implementation
/external/skia/tools/skiaserve/
DResponse.cpp55 int SendError(MHD_Connection* connection, const char* msg) { in SendError() function
/external/rust/crates/h2/src/proto/
Derror.rs87 impl From<Error> for SendError { implementation
/external/rust/crates/h2/src/
Dclient.rs1573 ) -> Result<Headers, SendError> { in convert_send_message() argument
/external/cronet/net/dns/
Dmdns_client_unittest.cc1461 TEST_F(MDnsConnectionSendTest, SendError) { in TEST_F() argument
/external/rust/crates/h2/src/proto/streams/
Dstreams.rs223 ) -> Result<(StreamRef<B>, bool), SendError> { in send_request() argument