Searched refs:MappedRwLockWriteGuard (Results 1 – 4 of 4) sorted by relevance
/external/rust/crates/lock_api/src/ |
D | rwlock.rs | 1067 pub fn map<U: ?Sized, F>(s: Self, f: F) -> MappedRwLockWriteGuard<'a, R, U> in map() 1074 MappedRwLockWriteGuard { in map() 1091 pub fn try_map<U: ?Sized, F>(s: Self, f: F) -> Result<MappedRwLockWriteGuard<'a, R, U>, Self> in try_map() 1101 Ok(MappedRwLockWriteGuard { in try_map() 1641 pub struct MappedRwLockWriteGuard<'a, R: RawRwLock, T: ?Sized> { struct 1648 for MappedRwLockWriteGuard<'a, R, T> argument 1651 unsafe impl<'a, R: RawRwLock + 'a, T: ?Sized + Send + 'a> Send for MappedRwLockWriteGuard<'a, R, T>… implementation 1656 impl<'a, R: RawRwLock + 'a, T: ?Sized + 'a> MappedRwLockWriteGuard<'a, R, T> { impl 1666 pub fn map<U: ?Sized, F>(s: Self, f: F) -> MappedRwLockWriteGuard<'a, R, U> in map() 1673 MappedRwLockWriteGuard { in map() [all …]
|
/external/rust/crates/parking_lot/ |
D | CHANGELOG.md | 17 - Remove deprecated and unsound `MappedRwLockWriteGuard::downgrade`. (#244) 39 - Deprecate unsound `MappedRwLockWriteGuard::downgrade` (#198) 116 - `MappedRwLockWriteGuard`
|
/external/rust/crates/parking_lot/src/ |
D | lib.rs | 54 const_rwlock, MappedRwLockReadGuard, MappedRwLockWriteGuard, RwLock, RwLockReadGuard,
|
D | rwlock.rs | 122 pub type MappedRwLockWriteGuard<'a, T> = lock_api::MappedRwLockWriteGuard<'a, RawRwLock, T>; typedef
|