Home
last modified time | relevance | path

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

12

/NextBSD/contrib/jemalloc/src/
HDprof.c130 static char *prof_thread_name_alloc(tsd_t *tsd, const char *thread_name);
1274 (tdata->thread_name != NULL) ? " " : "", in prof_tdata_dump_iter()
1275 (tdata->thread_name != NULL) ? tdata->thread_name : "")) in prof_tdata_dump_iter()
1708 char *thread_name, bool active) in prof_tdata_init_impl() argument
1725 tdata->thread_name = thread_name; in prof_tdata_init_impl()
1786 if (tdata->thread_name != NULL) in prof_tdata_destroy_locked()
1787 idalloctm(tsd, tdata->thread_name, tcache, true); in prof_tdata_destroy_locked()
1828 char *thread_name = (tdata->thread_name != NULL) ? in prof_tdata_reinit() local
1829 prof_thread_name_alloc(tsd, tdata->thread_name) : NULL; in prof_tdata_reinit()
1833 return (prof_tdata_init_impl(tsd, thr_uid, thr_discrim, thread_name, in prof_tdata_reinit()
[all …]
/NextBSD/contrib/compiler-rt/lib/tsan/rtl/
HDtsan_report.cc77 const char *thread_name(char *buf, int tid) { in thread_name() function
154 thread_name(thrbuf, mop->tid)); in PrintMop()
175 thread_name(thrbuf, loc->tid)); in PrintLocation()
178 Printf(" Location is stack of %s.\n\n", thread_name(thrbuf, loc->tid)); in PrintLocation()
180 Printf(" Location is TLS of %s.\n\n", thread_name(thrbuf, loc->tid)); in PrintLocation()
183 loc->fd, thread_name(thrbuf, loc->tid)); in PrintLocation()
227 thread_name(thrbuf, rt->parent_tid)); in PrintThread()
295 Printf("%s:\n", thread_name(thrbuf, rep->unique_tids[i])); in PrintReport()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Host/
HDThreadLauncher.h33 std::string thread_name; member
38 : thread_name(name ? name : "") in HostThreadCreateInfo()
/NextBSD/lib/libdispatch/src/shims/
HDyield.h151 #define _dispatch_thread_switch(thread_name, option, option_time) \ argument
152 thread_switch((thread_name), (option), (option_time))
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDCommunication.cpp246 char thread_name[1024]; in StartReadThread() local
247 snprintf(thread_name, sizeof(thread_name), "<lldb.comm.%s>", m_broadcaster_name.AsCString()); in StartReadThread()
251 …m_read_thread = ThreadLauncher::LaunchThread(thread_name, Communication::ReadThread, this, error_p… in StartReadThread()
HDLog.cpp132 llvm::SmallString<32> thread_name; in VAPrintf() local
133 ThisThread::GetName(thread_name); in VAPrintf()
134 if (!thread_name.empty()) in VAPrintf()
135 header.Printf ("%s ", thread_name.c_str()); in VAPrintf()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Target/
HDQueueItem.h173 SetThreadLabel (std::string thread_name) in SetThreadLabel() argument
175 m_thread_label = thread_name; in SetThreadLabel()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/
HDMemoryHistoryASan.cpp110 …ocess_sp, ValueObjectSP return_value_sp, const char *type, const char *thread_name, HistoryThreads… in CreateHistoryThreadFromValueObject() argument
136 history_thread->SetThreadName(thread_name); in CreateHistoryThreadFromValueObject()
/NextBSD/sys/cddl/contrib/opensolaris/uts/common/os/
HDcallb.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()
/NextBSD/contrib/llvm/tools/lldb/source/Breakpoint/
HDBreakpointLocation.cpp167 BreakpointLocation::SetThreadName (const char *thread_name) in SetThreadName() argument
169 if (thread_name != NULL) in SetThreadName()
170 GetLocationOptions()->GetThreadSpec()->SetName(thread_name); in SetThreadName()
176 m_options_ap->GetThreadSpec()->SetName(thread_name); in SetThreadName()
HDBreakpoint.cpp265 Breakpoint::SetThreadName (const char *thread_name) in SetThreadName() argument
268 && ::strcmp (m_options.GetThreadSpec()->GetName(), thread_name) == 0) in SetThreadName()
271 m_options.GetThreadSpec()->SetName (thread_name); in SetThreadName()
/NextBSD/sys/sys/mach/
HDthread_switch.h100 mach_port_name_t thread_name,
HDmach_traps.h121 mach_port_name_t thread_name);
281 mach_port_name_t thread_name,
411 PAD_ARG_(mach_port_name_t, thread_name);
529 PAD_ARG_(mach_port_name_t, thread_name);
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
HDPOSIXThread.cpp138 llvm::SmallString<32> thread_name; in GetName() local
139 HostNativeThread::GetName(GetID(), thread_name); in GetName()
140 m_thread_name = thread_name.c_str(); in GetName()
/NextBSD/contrib/llvm/tools/lldb/source/API/
HDSBBreakpointLocation.cpp256 SBBreakpointLocation::SetThreadName (const char *thread_name) in SetThreadName() argument
261 m_opaque_sp->SetThreadName (thread_name); in SetThreadName()
HDSBBreakpoint.cpp437 SBBreakpoint::SetThreadName (const char *thread_name) in SetThreadName() argument
442 static_cast<void*>(m_opaque_sp.get()), thread_name); in SetThreadName()
447 m_opaque_sp->GetOptions()->GetThreadSpec()->SetName (thread_name); in SetThreadName()
/NextBSD/contrib/llvm/tools/lldb/source/Host/common/
HDHostNativeThreadBase.cpp71 ThisThread::SetName(info->thread_name.c_str(), HostInfo::GetMaxThreadNameLength()); in ThreadCreateTrampoline()
HDHost.cpp111 char thread_name[256]; in StartMonitoringChildProcess() local
112 ::snprintf(thread_name, sizeof(thread_name), "<lldb.host.wait4(pid=%" PRIu64 ")>", pid); in StartMonitoringChildProcess()
113 …return ThreadLauncher::LaunchThread(thread_name, MonitorChildProcessThreadFunction, info_ptr, NULL… in StartMonitoringChildProcess()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/API/
HDSBBreakpointLocation.h80 SetThreadName (const char *thread_name);
HDSBBreakpoint.h107 SetThreadName (const char *thread_name);
/NextBSD/contrib/jemalloc/include/jemalloc/internal/
HDprof.h189 char *thread_name; member
309 int prof_thread_name_set(tsd_t *tsd, const char *thread_name);
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
HDBreakpointLocation.h201 SetThreadName (const char *thread_name);
HDBreakpoint.h448 SetThreadName (const char *thread_name);
/NextBSD/sys/compat/mach/
HDmach_thread.c88 mach_thread_switch(mach_port_name_t thread_name, int option, mach_msg_timeout_t option_time) in mach_thread_switch() argument
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
HDProcessGDBRemote.cpp1886 const std::string &thread_name, in SetThreadStopInfo() argument
1930 thread_sp->SetName (thread_name.empty() ? NULL : thread_name.c_str()); in SetThreadStopInfo()
2108 std::string thread_name; in SetThreadStopInfo() local
2124 &thread_name, in SetThreadStopInfo()
2161 thread_name = std::move(object->GetStringValue()); in SetThreadStopInfo()
2253 thread_name, in SetThreadStopInfo()
2300 std::string thread_name; in SetThreadStopInfo() local
2357 thread_name.swap (value); in SetThreadStopInfo()
2361 thread_name.swap (value); in SetThreadStopInfo()
2480 thread_name, in SetThreadStopInfo()

12