Searched refs:BinderError (Results 1 – 2 of 2) sorted by relevance
10 pub(crate) type BinderResult<T = ()> = core::result::Result<T, BinderError>;14 pub(crate) struct BinderError { struct19 impl BinderError { implementation56 impl From<Error> for BinderError { implementation65 impl From<kernel::fs::file::BadFdError> for BinderError { implementation67 BinderError::from(Error::from(source)) in from()71 impl From<kernel::alloc::AllocError> for BinderError { implementation80 impl fmt::Debug for BinderError { implementation
45 error::{BinderError, BinderResult},175 ) -> Result<(), (BinderError, DLArc<dyn DeliverToRead>)> { in push_work() argument182 PushWorkRes::FailedDead(work) => Err((BinderError::new_dead(), work)), in push_work()185 Err((BinderError::new_dead(), work)) in push_work()1021 let mapping = inner.mapping.as_mut().ok_or_else(BinderError::new_dead)?; in buffer_alloc()