| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Host/freebsd/ |
| D | Host.cpp | 55 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/ |
| D | Communication.cpp | 242 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()
|
| D | Log.cpp | 116 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()
|
| D | IOHandler.cpp | 4176 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/ |
| D | Host.cpp | 118 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/ |
| D | QueueItem.h | 187 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/ |
| D | BreakpointLocation.cpp | 168 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()
|
| D | Breakpoint.cpp | 255 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/ |
| D | callb.c | 378 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/ |
| D | SBBreakpointLocation.cpp | 208 SBBreakpointLocation::SetThreadName (const char *thread_name) in SetThreadName() argument 213 m_opaque_sp->SetThreadName (thread_name); in SetThreadName()
|
| D | SBBreakpoint.cpp | 418 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/ |
| D | SBBreakpointLocation.h | 74 SetThreadName (const char *thread_name);
|
| D | SBBreakpoint.h | 107 SetThreadName (const char *thread_name);
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/ |
| D | BreakpointLocation.h | 205 SetThreadName (const char *thread_name);
|
| D | Breakpoint.h | 413 SetThreadName (const char *thread_name);
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ |
| D | ProcessGDBRemote.cpp | 1520 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/ |
| D | Process.cpp | 3962 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()
|