Home
last modified time | relevance | path

Searched refs:GetMutex (Results 1 – 25 of 39) sorted by relevance

12

/llvm-project-15.0.7/lldb/source/Target/
H A DThreadList.cpp41 std::lock(GetMutex(), rhs.GetMutex()); in operator =()
84 std::lock_guard<std::recursive_mutex> guard(GetMutex()); in GetSize()
92 std::lock_guard<std::recursive_mutex> guard(GetMutex()); in GetThreadAtIndex()
104 std::lock_guard<std::recursive_mutex> guard(GetMutex()); in FindThreadByID()
122 std::lock_guard<std::recursive_mutex> guard(GetMutex()); in FindThreadByProtocolID()
140 std::lock_guard<std::recursive_mutex> guard(GetMutex()); in RemoveThreadByID()
160 std::lock_guard<std::recursive_mutex> guard(GetMutex()); in RemoveThreadByProtocolID()
196 std::lock_guard<std::recursive_mutex> guard(GetMutex()); in GetBackingThread()
210 std::lock_guard<std::recursive_mutex> guard(GetMutex()); in FindThreadByIndexID()
358 std::lock_guard<std::recursive_mutex> guard(GetMutex()); in ShouldReportStop()
[all …]
H A DThreadCollection.cpp25 std::lock_guard<std::recursive_mutex> guard(GetMutex()); in AddThread()
30 std::lock_guard<std::recursive_mutex> guard(GetMutex()); in AddThreadSortedByIndexID()
47 std::lock_guard<std::recursive_mutex> guard(GetMutex()); in InsertThread()
55 std::lock_guard<std::recursive_mutex> guard(GetMutex()); in GetSize()
60 std::lock_guard<std::recursive_mutex> guard(GetMutex()); in GetThreadAtIndex()
H A DQueueList.cpp69 std::mutex &QueueList::GetMutex() { return m_mutex; } in GetMutex() function in QueueList
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DThreadCollection.h47 return ThreadIterable(m_threads, GetMutex()); in Threads()
50 virtual std::recursive_mutex &GetMutex() const { return m_mutex; } in GetMutex() function
H A DQueueList.h94 std::mutex &GetMutex();
H A DThreadList.h136 std::recursive_mutex &GetMutex() const override;
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DBreakpointList.h155 std::recursive_mutex &GetMutex() const { return m_mutex; } in GetMutex() function
167 return BreakpointIterable(m_breakpoints, GetMutex()); in Breakpoints()
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOSXDYLD.cpp112 std::lock_guard<std::recursive_mutex> baseclass_guard(GetMutex()); in ProcessDidExec()
251 std::lock_guard<std::recursive_mutex> baseclass_guard(GetMutex()); in ReadDYLDInfoFromMemoryAndSetNotificationCallback()
543 std::lock_guard<std::recursive_mutex> baseclass_guard(GetMutex()); in AddModulesUsingImageInfosAddress()
583 std::lock_guard<std::recursive_mutex> baseclass_guard(GetMutex()); in RemoveModulesUsingImageInfosAddress()
667 std::lock_guard<std::recursive_mutex> baseclass_guard(GetMutex()); in ReadImageInfos()
710 std::lock_guard<std::recursive_mutex> baseclass_guard(GetMutex()); in InitializeFromAllImageInfos()
968 std::lock_guard<std::recursive_mutex> baseclass_guard(GetMutex()); in UpdateImageInfosHeaderAndLoadCommands()
986 std::lock_guard<std::recursive_mutex> baseclass_guard(GetMutex()); in PutToLog()
1017 std::lock_guard<std::recursive_mutex> baseclass_guard(GetMutex()); in SetNotificationBreakpoint()
1151 std::lock_guard<std::recursive_mutex> baseclass_guard(GetMutex()); in AddrByteSize()
H A DDynamicLoaderMacOS.cpp93 std::lock_guard<std::recursive_mutex> baseclass_guard(GetMutex()); in ProcessDidExec()
471 std::lock_guard<std::recursive_mutex> guard(target_modules.GetMutex()); in CanLoadImage()
H A DDynamicLoaderDarwin.h196 std::recursive_mutex &GetMutex() const { return m_mutex; } in GetMutex() function
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DThreadSafeValue.h47 std::recursive_mutex &GetMutex() { return m_mutex; } in GetMutex() function
H A DModuleList.h208 std::recursive_mutex &GetMutex() const { return m_modules_mutex; } in GetMutex() function
492 return ModuleIterable(m_modules, GetMutex()); in Modules()
H A DModule.h833 std::recursive_mutex &GetMutex() const { return m_mutex; } in GetMutex() function
H A DIOHandler.h516 std::recursive_mutex &GetMutex() { return m_mutex; } in GetMutex() function
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectThreadUtil.cpp67 process->GetThreadList().GetMutex()); in DoExecute()
178 process.GetThreadList().GetMutex()); in DoExecute()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DSymbolVendor.cpp67 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex()); in AddSymbolFileRepresentation()
H A DSymbolFile.cpp36 return GetObjectFile()->GetModule()->GetMutex(); in GetModuleMutex()
H A DObjectFile.cpp593 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex()); in GetSectionList()
744 std::lock_guard<std::recursive_mutex> symtab_guard(symtab->GetMutex()); in GetSymtab()
/llvm-project-15.0.7/lldb/source/Core/
H A DDebugger.cpp986 std::lock_guard<std::recursive_mutex> guard(m_io_handler_stack.GetMutex()); in DispatchInputInterrupt()
993 std::lock_guard<std::recursive_mutex> guard(m_io_handler_stack.GetMutex()); in DispatchInputEndOfFile()
1002 std::lock_guard<std::recursive_mutex> guard(m_io_handler_stack.GetMutex()); in ClearIOHandlers()
1115 std::lock_guard<std::recursive_mutex> guard(m_io_handler_stack.GetMutex()); in AdoptTopIOHandlerFilesIfInvalid()
1154 std::lock_guard<std::recursive_mutex> guard(m_io_handler_stack.GetMutex()); in PushIOHandler()
1180 std::lock_guard<std::recursive_mutex> guard(m_io_handler_stack.GetMutex()); in PopIOHandler()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/JIT/
H A DObjectFileJIT.cpp133 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex()); in Dump()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DSymtab.h51 std::recursive_mutex &GetMutex() { return m_mutex; } in GetMutex() function
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/PECOFF/
H A DObjectFilePECOFF.cpp435 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex()); in ParseHeader()
980 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex()); in CreateSections()
1056 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex()); in ParseDependentModules()
1138 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex()); in Dump()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp1027 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex()); in ParseHeader()
4780 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex());
5090 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex());
5101 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex());
5237 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex());
5390 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex());
5417 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex());
5487 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex());
5534 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex());
5642 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex());
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.h307 std::mutex &GetMutex() { return m_mutex; } in GetMutex() function
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.cpp438 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex()); in Dump()

12