Home
last modified time | relevance | path

Searched defs:TryLockError (Results 1 – 8 of 8) sorted by relevance

/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sync/
H A Dpoison.rs137 pub enum TryLockError<T> { enum
261 impl<T> From<PoisonError<T>> for TryLockError<T> { implementation
268 impl<T> fmt::Debug for TryLockError<T> { implementation
281 impl<T> fmt::Display for TryLockError<T> { implementation
295 impl<T> Error for TryLockError<T> { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sync/
H A Dpoison.rs137 pub enum TryLockError<T> { enum
261 impl<T> From<PoisonError<T>> for TryLockError<T> { implementation
268 impl<T> fmt::Debug for TryLockError<T> { implementation
281 impl<T> fmt::Display for TryLockError<T> { implementation
295 impl<T> Error for TryLockError<T> { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/sync/
H A Dpoison.rs137 pub enum TryLockError<T> { enum
261 impl<T> From<PoisonError<T>> for TryLockError<T> { implementation
268 impl<T> fmt::Debug for TryLockError<T> { implementation
281 impl<T> fmt::Display for TryLockError<T> { implementation
295 impl<T> Error for TryLockError<T> { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sync/
H A Dpoison.rs137 pub enum TryLockError<T> { enum
261 impl<T> From<PoisonError<T>> for TryLockError<T> { implementation
268 impl<T> fmt::Debug for TryLockError<T> { implementation
281 impl<T> fmt::Display for TryLockError<T> { implementation
295 impl<T> Error for TryLockError<T> { implementation
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sync/
H A Dpoison.rs137 pub enum TryLockError<T> { enum
261 impl<T> From<PoisonError<T>> for TryLockError<T> { implementation
268 impl<T> fmt::Debug for TryLockError<T> { implementation
281 impl<T> fmt::Display for TryLockError<T> { implementation
295 impl<T> Error for TryLockError<T> { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/sync/
Drwlock.rs652 pub fn try_read(&self) -> Result<RwLockReadGuard<'_, T>, TryLockError> { in try_read() argument
717 pub fn try_read_owned(self: Arc<Self>) -> Result<OwnedRwLockReadGuard<T>, TryLockError> { in try_read_owned() argument
972 pub fn try_write(&self) -> Result<RwLockWriteGuard<'_, T>, TryLockError> { in try_write() argument
1030 pub fn try_write_owned(self: Arc<Self>) -> Result<OwnedRwLockWriteGuard<T>, TryLockError> { in try_write_owned() argument
Dmutex.rs293 pub struct TryLockError(pub(super) ()); struct
295 impl fmt::Display for TryLockError { implementation
301 impl Error for TryLockError {} implementation
678 pub fn try_lock(&self) -> Result<MutexGuard<'_, T>, TryLockError> { in try_lock() argument
749 pub fn try_lock_owned(self: Arc<Self>) -> Result<OwnedMutexGuard<T>, TryLockError> { in try_lock_owned() argument
/aosp_15_r20/packages/modules/Bluetooth/system/rust/src/core/
Dshared_mutex.rs54 pub fn try_lock(&self) -> Result<OwnedMutexGuard<T>, TryLockError> { in try_lock() argument