Searched refs:TryLock (Results 1 - 12 of 12) sorted by relevance

/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DMutex.h118 /// unlock it when it goes out of scope or Reset or TryLock are
128 TryLock (Mutex &mutex, const char *failure_message = NULL);
131 TryLock (Mutex *mutex, const char *failure_message = NULL) function in class:lldb_private::Mutex::Locker
134 return TryLock(*mutex, failure_message);
206 /// If the mutex is already locked, TryLock() will not block waiting
216 TryLock(const char *failure_message = NULL);
271 TryLock (const char *failure_message = NULL) function in class:lldb_private::TrackingMutex
273 int return_value = Mutex::TryLock();
303 TryLock (const char *failure_message = NULL);
H A DProcessRunLock.h58 TryLock (ProcessRunLock *lock) function in class:lldb_private::ProcessRunLock::ProcessRunLocker
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Host/common/
H A DMutex.cpp168 Mutex::Locker::TryLock (Mutex &mutex, const char *failure_message) function in class:Mutex::Locker
176 if (mutex.TryLock(failure_message) == 0)
292 // If the mutex is already locked, TryLock() will not block waiting
299 Mutex::TryLock(const char *failure_message) function in class:Mutex
384 LoggingMutex::TryLock (const char *failure_message) function in class:LoggingMutex
387 int x = Mutex::TryLock(failure_message);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/API/
H A DSBFrame.cpp123 if (stop_locker.TryLock(&process->GetRunLock()))
165 if (stop_locker.TryLock(&process->GetRunLock()))
207 if (stop_locker.TryLock(&process->GetRunLock()))
247 if (stop_locker.TryLock(&process->GetRunLock()))
287 if (stop_locker.TryLock(&process->GetRunLock()))
326 if (stop_locker.TryLock(&process->GetRunLock()))
365 if (stop_locker.TryLock(&process->GetRunLock()))
404 if (stop_locker.TryLock(&process->GetRunLock()))
460 if (stop_locker.TryLock(&process->GetRunLock()))
500 if (stop_locker.TryLock(
[all...]
H A DSBThread.cpp116 if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock()))
143 if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock()))
201 if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock()))
277 if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock()))
406 if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock()))
465 if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock()))
493 if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock()))
521 if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock()))
998 if (stop_locker.TryLock(&exe_ctx.GetProcessPtr()->GetRunLock()))
1023 if (stop_locker.TryLock(
[all...]
H A DSBProcess.cpp251 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock());
522 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock());
907 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock());
934 const bool can_update = stop_locker.TryLock(&process_sp->GetRunLock());
1040 if (stop_locker.TryLock(&process_sp->GetRunLock()))
1082 if (stop_locker.TryLock(&process_sp->GetRunLock()))
1110 if (stop_locker.TryLock(&process_sp->GetRunLock()))
1138 if (stop_locker.TryLock(&process_sp->GetRunLock()))
1180 if (stop_locker.TryLock(&process_sp->GetRunLock()))
1267 if (stop_locker.TryLock(
[all...]
H A DSBQueue.cpp144 if (stop_locker.TryLock (&queue_sp->GetProcess()->GetRunLock()))
171 if (stop_locker.TryLock (&queue_sp->GetProcess()->GetRunLock()))
H A DSBValue.cpp144 if (process_sp && !stop_locker.TryLock (&process_sp->GetRunLock()))
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DConnectionFileDescriptor.cpp389 bool got_lock= locker.TryLock (m_mutex);
452 bool got_lock = locker.TryLock (m_mutex);
H A DModuleList.cpp245 if (!locker.TryLock(m_modules_mutex))
H A DDebugger.cpp1005 if (locker.TryLock(m_input_reader_stack.GetMutex()))
3030 // if (locker.TryLock(m_input_reader_stack.GetMutex()))
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp274 return locker.TryLock (m_sequence_mutex, failure_message);

Completed in 171 milliseconds