Home
last modified time | relevance | path

Searched refs:thread_name (Results 1 – 17 of 17) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Host/freebsd/
DHost.cpp55 FreeBSDThread(const char *thread_name) in FreeBSDThread() argument
57 Host::SetThreadName (LLDB_INVALID_PROCESS_ID, LLDB_INVALID_THREAD_ID, thread_name); in FreeBSDThread()
75 Host::ThreadCreated (const char *thread_name) in ThreadCreated() argument
80 ::pthread_setspecific (g_thread_create_key, new FreeBSDThread(thread_name)); in ThreadCreated()
83 Host::SetShortThreadName (LLDB_INVALID_PROCESS_ID, LLDB_INVALID_THREAD_ID, thread_name, 16); in ThreadCreated()
89 std::string thread_name; in GetThreadName() local
90 return thread_name; in GetThreadName()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/
DCommunication.cpp242 char thread_name[1024]; in StartReadThread() local
243 snprintf(thread_name, sizeof(thread_name), "<lldb.comm.%s>", m_broadcaster_name.AsCString()); in StartReadThread()
246 m_read_thread = Host::ThreadCreate (thread_name, Communication::ReadThread, this, error_ptr); in StartReadThread()
DLog.cpp116 std::string thread_name (Host::GetThreadName (getpid(), Host::GetCurrentThreadID())); in PrintfWithFlagsVarArg() local
117 if (!thread_name.empty()) in PrintfWithFlagsVarArg()
118 header.Printf ("%s ", thread_name.c_str()); in PrintfWithFlagsVarArg()
DIOHandler.cpp4176 const char *thread_name = thread_sp->GetName(); in MenuDelegateAction() local
4177 if (thread_name && thread_name[0]) in MenuDelegateAction()
4178 thread_menu_title.Printf (" %s", thread_name); in MenuDelegateAction()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Host/common/
DHost.cpp118 char thread_name[256]; in StartMonitoringChildProcess() local
119 ::snprintf (thread_name, sizeof(thread_name), "<lldb.host.wait4(pid=%" PRIu64 ")>", pid); in StartMonitoringChildProcess()
120 thread = ThreadCreate (thread_name, in StartMonitoringChildProcess()
580 Host::ThreadCreated (const char *thread_name) in ThreadCreated() argument
601 std::string thread_name; member
606 thread_name (name ? name : ""), in HostThreadCreateInfo()
620 Host::ThreadCreated (info->thread_name.c_str()); in ThreadCreateTrampoline()
635 const char *thread_name, in ThreadCreate() argument
644 … HostThreadCreateInfo *info_ptr = new HostThreadCreateInfo (thread_name, thread_fptr, thread_arg); in ThreadCreate()
778 const char *thread_name, size_t len) in SetShortThreadName() argument
[all …]
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Target/
DQueueItem.h187 SetThreadLabel (std::string thread_name) in SetThreadLabel() argument
189 m_thread_label = thread_name; in SetThreadLabel()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Breakpoint/
DBreakpointLocation.cpp168 BreakpointLocation::SetThreadName (const char *thread_name) in SetThreadName() argument
170 if (thread_name != NULL) in SetThreadName()
171 GetLocationOptions()->GetThreadSpec()->SetName(thread_name); in SetThreadName()
177 m_options_ap->GetThreadSpec()->SetName(thread_name); in SetThreadName()
DBreakpoint.cpp255 Breakpoint::SetThreadName (const char *thread_name) in SetThreadName() argument
258 && ::strcmp (m_options.GetThreadSpec()->GetName(), thread_name) == 0) in SetThreadName()
261 m_options.GetThreadSpec()->SetName (thread_name); in SetThreadName()
/freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/os/
Dcallb.c378 callb_is_stopped(kthread_id_t tp, caddr_t *thread_name) in callb_is_stopped() argument
398 *thread_name = cp->c_name; /* in case not stopped */ in callb_is_stopped()
429 *thread_name = sym ? sym : "*unknown*"; in callb_is_stopped()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/API/
DSBBreakpointLocation.cpp208 SBBreakpointLocation::SetThreadName (const char *thread_name) in SetThreadName() argument
213 m_opaque_sp->SetThreadName (thread_name); in SetThreadName()
DSBBreakpoint.cpp418 SBBreakpoint::SetThreadName (const char *thread_name) in SetThreadName() argument
422 log->Printf ("SBBreakpoint(%p)::SetThreadName (%s)", m_opaque_sp.get(), thread_name); in SetThreadName()
427 m_opaque_sp->GetOptions()->GetThreadSpec()->SetName (thread_name); in SetThreadName()
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/API/
DSBBreakpointLocation.h74 SetThreadName (const char *thread_name);
DSBBreakpoint.h107 SetThreadName (const char *thread_name);
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
DBreakpointLocation.h205 SetThreadName (const char *thread_name);
DBreakpoint.h413 SetThreadName (const char *thread_name);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp1520 std::string thread_name; in SetThreadStopInfo() local
1597 thread_name.swap (value); in SetThreadStopInfo()
1601 thread_name.swap (value); in SetThreadStopInfo()
1617 desc_extractor.GetHexByteString (thread_name); in SetThreadStopInfo()
1668 gdb_thread->SetName (thread_name.empty() ? NULL : thread_name.c_str()); in SetThreadStopInfo()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Target/
DProcess.cpp3962 char thread_name[1024]; in StartPrivateStateThread() local
3964 …snprintf(thread_name, sizeof(thread_name), "<lldb.process.internal-state-override(pid=%" PRIu64 ")… in StartPrivateStateThread()
3966 …snprintf(thread_name, sizeof(thread_name), "<lldb.process.internal-state(pid=%" PRIu64 ")>", GetID… in StartPrivateStateThread()
3969 …m_private_state_thread = Host::ThreadCreate (thread_name, Process::PrivateStateThread, this, NULL); in StartPrivateStateThread()