Home
last modified time | relevance | path

Searched defs:MutexGuard (Results 1 – 2 of 2) sorted by relevance

/third_party/rust/crates/tracing/tracing-core/src/spin/
Dmutex.rs20 pub(crate) struct MutexGuard<'a, T: ?Sized> { struct
21 lock: &'a AtomicBool,
22 data: &'a mut T,
100 impl<'a, T: ?Sized> Deref for MutexGuard<'a, T> { implementation
107 impl<'a, T: ?Sized> DerefMut for MutexGuard<'a, T> { implementation
113 impl<'a, T: ?Sized> Drop for MutexGuard<'a, T> { implementation
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DMutexGuard.h32 MutexGuard(sys::Mutex &m) : M(m) { M.lock(); } in MutexGuard() function