Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSDKernel/
H A DThreadFreeBSDKernel.h29 if (m_thread_name.empty()) in GetName()
31 return m_thread_name.c_str(); in GetName()
36 m_thread_name.assign(name); in SetName()
38 m_thread_name.clear(); in SetName()
45 std::string m_thread_name;
H A DThreadFreeBSDKernel.cpp29 : Thread(process, tid), m_thread_name(std::move(thread_name)), in ThreadFreeBSDKernel()
/freebsd/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.cpp33 m_thread_name(), m_originating_unique_thread_id(tid), in HistoryThread()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.h152 if (m_thread_name.empty()) in GetName()
154 return m_thread_name.c_str(); in GetName()
159 m_thread_name.assign(name); in SetName()
161 m_thread_name.clear(); in SetName()
166 std::string m_thread_name;
H A DThreadElfCore.cpp54 : Thread(process, td.tid), m_thread_name(td.name), m_thread_reg_ctx_sp(), in ThreadElfCore()
/freebsd/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/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp4782 m_thread_name = std::string(option_arg); in SetOptionValue()
4819 m_thread_name.clear(); in OptionParsingStarting()
4841 std::string m_thread_name; member in CommandObjectTargetStopHookAdd::CommandOptions
5027 if (!m_options.m_thread_name.empty()) in DoExecute()
5028 thread_spec->SetName(m_options.m_thread_name.c_str()); in DoExecute()