Home
last modified time | relevance | path

Searched refs:m_thread_name (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DHistoryThread.h66 const char *GetThreadName() { return m_thread_name.c_str(); } in GetThreadName()
70 void SetThreadName(const char *name) { m_thread_name = name; } in SetThreadName()
72 const char *GetName() override { return m_thread_name.c_str(); } in GetName()
74 void SetName(const char *name) override { m_thread_name = name; } in SetName()
85 std::string m_thread_name; variable
H A DHistoryThread.cpp32 m_thread_name(), m_originating_unique_thread_id(tid), in HistoryThread()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.h151 if (m_thread_name.empty()) in GetName()
153 return m_thread_name.c_str(); in GetName()
158 m_thread_name.assign(name); in SetName()
160 m_thread_name.clear(); in SetName()
165 std::string m_thread_name;
H A DThreadElfCore.cpp51 : Thread(process, td.tid), m_thread_name(td.name), m_thread_reg_ctx_sp(), in ThreadElfCore()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.h69 m_thread_name.assign(name); in SetName()
71 m_thread_name.clear(); in SetName()
96 std::string m_thread_name; variable
H A DThreadGDBRemote.cpp37 : Thread(process, tid), m_thread_name(), m_dispatch_queue_name(), in ThreadGDBRemote()
64 if (m_thread_name.empty()) in GetName()
66 return m_thread_name.c_str(); in GetName()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp4427 m_thread_name = std::string(option_arg); in SetOptionValue()
4464 m_thread_name.clear(); in OptionParsingStarting()
4486 std::string m_thread_name; member in CommandObjectTargetStopHookAdd::CommandOptions
4672 if (!m_options.m_thread_name.empty()) in DoExecute()
4673 thread_spec->SetName(m_options.m_thread_name.c_str()); in DoExecute()