Searched defs:ReentrantMutex (Results 1 – 2 of 2) sorted by relevance
/external/rust/android-crates-io/crates/lock_api/src/ |
D | remutex.rs | 216 pub struct ReentrantMutex<R, G, T: ?Sized> { struct 217 raw: RawReentrantMutex<R, G>, argument 221 unsafe impl<R: RawMutex + Send, G: GetThreadId + Send, T: ?Sized + Send> Send 222 for ReentrantMutex<R, G, T> argument 225 unsafe impl<R: RawMutex + Sync, G: GetThreadId + Sync, T: ?Sized + Send> Sync 230 impl<R: RawMutex, G: GetThreadId, T> ReentrantMutex<R, G, T> { impl 268 impl<R, G, T> ReentrantMutex<R, G, T> { impl 297 impl<R: RawMutex, G: GetThreadId, T: ?Sized> ReentrantMutex<R, G, T> { impl 461 impl<R: RawMutexFair, G: GetThreadId, T: ?Sized> ReentrantMutex<R, G, T> { implementation 479 impl<R: RawMutexTimed, G: GetThreadId, T: ?Sized> ReentrantMutex<R, G, T> { implementation [all …]
|
/external/rust/android-crates-io/crates/parking_lot/src/ |
D | remutex.rs | 41 pub type ReentrantMutex<T> = lock_api::ReentrantMutex<RawMutex, RawThreadId, T>; typedef
|