| /external/rust/crates/tokio/src/sync/mpsc/ | 
| D | error.rs | 8 pub struct SendError<T>(pub T);  struct10 impl<T> fmt::Display for SendError<T> {  implementation
 16 impl<T: fmt::Debug> std::error::Error for SendError<T> {}  implementation
 
 | 
| D | bounded.rs | 769     pub async fn reserve(&self) -> Result<Permit<'_, T>, SendError<()>> {  in reserve()  argument854     pub async fn reserve_owned(self) -> Result<OwnedPermit<T>, SendError<()>> {  in reserve_owned()  argument
 861     async fn reserve_inner(&self) -> Result<(), SendError<()>> {  in reserve_inner()  argument
 
 | 
| /external/rust/crates/crossbeam-channel/src/ | 
| D | err.rs | 12 pub struct SendError<T>(pub T);  struct118 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> {  impl
 
 | 
| /external/rust/crates/futures-channel/src/mpsc/ | 
| D | mod.rs | 152 pub struct SendError {  struct153     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()
 406     fn poll_ready_nb(&self) -> Poll<Result<(), SendError>> {  in poll_ready_nb()  argument
 616     fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), SendError>> {  in poll_ready()  argument
 700     pub fn start_send(&mut self, msg: T) -> Result<(), SendError> {  in start_send()  argument
 716     pub fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), SendError>> {  in poll_ready()  argument
 [all …]
 
 | 
| /external/openthread/src/core/net/ | 
| D | icmp6.cpp | 90 Error Icmp::SendError(Header::Type aType, Header::Code aCode, const MessageInfo &aMessageInfo, cons…  in SendError()  function in ot::Ip6::Icmp102 Error Icmp::SendError(Header::Type aType, Header::Code aCode, const MessageInfo &aMessageInfo, cons…  in SendError()  function in ot::Ip6::Icmp
 
 | 
| /external/skia/tools/skiaserve/ | 
| D | Response.cpp | 55 int SendError(MHD_Connection* connection, const char* msg) {  in SendError()  function
 | 
| /external/rust/crates/tokio/src/sync/ | 
| D | watch.rs | 197     pub struct SendError<T>(pub T);  struct201     impl<T: fmt::Debug> fmt::Display for SendError<T> {  implementation
 207     impl<T: fmt::Debug> std::error::Error for SendError<T> {}  implementation
 
 | 
| D | broadcast.rs | 222     pub struct SendError<T>(pub T);  struct224     impl<T> fmt::Display for SendError<T> {  implementation
 230     impl<T: fmt::Debug> std::error::Error for SendError<T> {}  implementation
 
 | 
| /external/cronet/net/dns/ | 
| D | mdns_client_unittest.cc | 1449 TEST_F(MDnsConnectionSendTest, SendError) {  in TEST_F()  argument
 |