Home
last modified time | relevance | path

Searched refs:m_jit_loaders_mutex (Results 1 – 2 of 2) sorted by relevance

/llvm-project/lldb/source/Target/
H A DJITLoaderList.cpp16 JITLoaderList::JITLoaderList() : m_jit_loaders_vec(), m_jit_loaders_mutex() {} in JITLoaderList()
21 std::lock_guard<std::recursive_mutex> guard(m_jit_loaders_mutex); in Append()
26 std::lock_guard<std::recursive_mutex> guard(m_jit_loaders_mutex); in Remove()
33 std::lock_guard<std::recursive_mutex> guard(m_jit_loaders_mutex); in GetLoaderAtIndex()
38 std::lock_guard<std::recursive_mutex> guard(m_jit_loaders_mutex); in DidLaunch()
44 std::lock_guard<std::recursive_mutex> guard(m_jit_loaders_mutex); in DidAttach()
50 std::lock_guard<std::recursive_mutex> guard(m_jit_loaders_mutex); in ModulesDidLoad()
/llvm-project/lldb/include/lldb/Target/
H A DJITLoaderList.h43 std::recursive_mutex m_jit_loaders_mutex; variable