Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DHistoryThread.h70 const char *GetThreadName() { return m_thread_name.c_str(); } in GetThreadName()
74 void SetThreadName(const char *name) { m_thread_name = name; } in SetThreadName()
76 const char *GetName() override { return m_thread_name.c_str(); } in GetName()
78 void SetName(const char *name) override { m_thread_name = name; } in SetName()
91 std::string m_thread_name; variable
H A DHistoryThread.cpp31 m_thread_name(), m_originating_unique_thread_id(tid), in HistoryThread()
/freebsd-12.1/contrib/llvm/tools/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()
168 std::string m_thread_name;
H A DThreadElfCore.cpp53 : Thread(process, td.tid), m_thread_name(td.name), m_thread_reg_ctx_sp(), in ThreadElfCore()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.h67 m_thread_name.assign(name); in SetName()
69 m_thread_name.clear(); in SetName()
94 std::string m_thread_name; variable
H A DThreadGDBRemote.cpp38 : Thread(process, tid), m_thread_name(), m_dispatch_queue_name(), in ThreadGDBRemote()
57 if (m_thread_name.empty()) in GetName()
59 return m_thread_name.c_str(); in GetName()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DFreeBSDThread.cpp56 m_thread_name_valid(false), m_thread_name(), m_posix_thread(nullptr) { in FreeBSDThread()
110 m_thread_name.assign(name); in SetName()
112 m_thread_name.clear(); in SetName()
117 m_thread_name.clear(); in GetName()
146 m_thread_name.append(kp[i].ki_tdname, in GetName()
155 if (m_thread_name.empty()) in GetName()
157 return m_thread_name.c_str(); in GetName()
H A DFreeBSDThread.h95 std::string m_thread_name; variable
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectTarget.cpp4608 m_thread_name = option_arg; in SetOptionValue()
4646 m_thread_name.clear(); in OptionParsingStarting()
4666 std::string m_thread_name; member in CommandObjectTargetStopHookAdd::CommandOptions
4790 if (!m_options.m_thread_name.empty()) in DoExecute()
4791 thread_spec->SetName(m_options.m_thread_name.c_str()); in DoExecute()