Searched refs:Mu (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/platform_specific/
H A Dmutex_posix.cpp16 int Status = pthread_mutex_lock(&Mu);
22 bool Mutex::tryLock() { return pthread_mutex_trylock(&Mu) == 0; }
25 int Status = pthread_mutex_unlock(&Mu);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dmutex.h34 pthread_mutex_t Mu = PTHREAD_MUTEX_INITIALIZER; member in class:gwp_asan::Mutex
40 explicit ScopedLock(Mutex &Mx) : Mu(Mx) { Mu.lock(); }
41 ~ScopedLock() { Mu.unlock(); }
46 Mutex Μ member in class:gwp_asan::ScopedLock
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerFork.cpp253 std::mutex Mu; member in struct:fuzzer::JobQueue
258 std::lock_guard<std::mutex> Lock(Mu);
264 std::unique_lock<std::mutex> Lk(Mu);
265 // std::lock_guard<std::mutex> Lock(Mu);
H A DFuzzerDriver.cpp212 static std::mutex Mu; member in namespace:fuzzer
217 std::lock_guard<std::mutex> Lock(Mu);
238 std::lock_guard<std::mutex> Lock(Mu);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafety.cpp2354 for (const auto &Mu : ExclusiveLocksToAdd) {
2355 auto Entry = std::make_unique<LockableFactEntry>(Mu, LK_Exclusive, Loc);
2359 for (const auto &Mu : SharedLocksToAdd) {
2360 auto Entry = std::make_unique<LockableFactEntry>(Mu, LK_Shared, Loc);

Completed in 206 milliseconds