Searched refs:thread_name (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DThreadLauncher.h31 std::string thread_name; member in struct:lldb_private::ThreadLauncher::HostThreadCreateInfo
37 : thread_name(name ? name : ""), thread_fptr(fptr), thread_arg(arg) {}
/freebsd-12-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBBreakpointLocation.i118 SetThreadName (const char *thread_name);
H A DSBBreakpointName.i77 void SetThreadName(const char *thread_name);
H A DSBBreakpoint.i166 SetThreadName (const char *thread_name);
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DQueueItem.h122 void SetThreadLabel(std::string thread_name) { m_thread_label = thread_name; } argument
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBBreakpointLocation.h75 void SetThreadName(const char *thread_name);
H A DSBBreakpointName.h76 void SetThreadName(const char *thread_name);
H A DSBBreakpoint.h85 void SetThreadName(const char *thread_name);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Host/common/
H A DHostNativeThreadBase.cpp59 llvm::set_thread_name(info->thread_name);
H A DHost.cpp111 char thread_name[256]; local
112 ::snprintf(thread_name, sizeof(thread_name),
115 thread_name, MonitorChildProcessThreadFunction, info_ptr, 0);
/freebsd-12-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dprof_structs.h148 char *thread_name; member in struct:prof_tdata_s
H A Dprof_externs.h76 int prof_thread_name_set(tsd_t *tsd, const char *thread_name);
/freebsd-12-stable/contrib/jemalloc/src/
H A Dprof.c146 static char *prof_thread_name_alloc(tsdn_t *tsdn, const char *thread_name);
1318 (tdata->thread_name != NULL) ? " " : "",
1319 (tdata->thread_name != NULL) ? tdata->thread_name : "")) {
1904 char *thread_name, bool active) {
1920 tdata->thread_name = thread_name;
1982 if (tdata->thread_name != NULL) {
1983 idalloctm(tsd_tsdn(tsd), tdata->thread_name, NULL, NULL, true,
2026 char *thread_name local
1903 prof_tdata_init_impl(tsd_t *tsd, uint64_t thr_uid, uint64_t thr_discrim, char *thread_name, bool active) argument
2134 prof_thread_name_alloc(tsdn_t *tsdn, const char *thread_name) argument
2157 prof_thread_name_set(tsd_t *tsd, const char *thread_name) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.cpp71 const char *thread_name(char *buf, int tid) { function in namespace:__tsan
168 (void *)mop->addr, thread_name(thrbuf, mop->tid));
175 (void *)mop->addr, thread_name(thrbuf, mop->tid));
204 thread_name(thrbuf, loc->tid));
208 thread_name(thrbuf, loc->tid));
212 Printf(" Location is stack of %s.\n\n", thread_name(thrbuf, loc->tid));
214 Printf(" Location is TLS of %s.\n\n", thread_name(thrbuf, loc->tid));
217 loc->fd, thread_name(thrbuf, loc->tid));
267 thread_name(thrbuf, rt->parent_tid));
340 Printf("%s:\n", thread_name(thrbu
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/MemoryHistory/asan/
H A DMemoryHistoryASan.cpp105 const char *thread_name,
142 thread_name_with_number << thread_name << " Thread " << tid;
102 CreateHistoryThreadFromValueObject(ProcessSP process_sp, ValueObjectSP return_value_sp, const char *type, const char *thread_name, HistoryThreads &result) argument
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
H A DCommunication.cpp200 char thread_name[1024]; local
201 snprintf(thread_name, sizeof(thread_name), "<lldb.comm.%s>",
207 thread_name, Communication::ReadThread, this);
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/os/
H A Dcallb.c378 callb_is_stopped(kthread_id_t tp, caddr_t *thread_name) argument
398 *thread_name = cp->c_name; /* in case not stopped */
429 *thread_name = sym ? sym : "*unknown*";
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointLocation.h148 void SetThreadName(const char *thread_name);
H A DBreakpoint.h357 void SetThreadName(const char *thread_name);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
H A DLog.cpp301 llvm::SmallString<32> thread_name; local
302 llvm::get_thread_name(thread_name);
306 format_os << "{0,-" << llvm::alignTo<16>(thread_name.size()) << "} ";
307 OS << llvm::formatv(format_str.c_str(), thread_name);
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointLocation.cpp355 void SBBreakpointLocation::SetThreadName(const char *thread_name) { argument
357 thread_name);
363 loc_sp->SetThreadName(thread_name);
H A DSBBreakpointName.cpp414 void SBBreakpointName::SetThreadName(const char *thread_name) { argument
416 thread_name);
425 bp_name->GetOptions().GetThreadSpec()->SetName(thread_name);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp148 void BreakpointLocation::SetThreadName(const char *thread_name) { argument
149 if (thread_name != nullptr)
150 GetLocationOptions()->GetThreadSpec()->SetName(thread_name);
155 m_options_up->GetThreadSpec()->SetName(thread_name);
/freebsd-12-stable/sys/dev/ocs_fc/
H A Docs_xport.h61 char thread_name[64]; member in struct:ocs_xport_rq_thread_info_s
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp543 const std::string thread_name = thread->GetName(); local
544 if (!thread_name.empty())
545 thread_obj.try_emplace("name", thread_name);
619 const std::string thread_name = thread->GetName(); local
620 if (!thread_name.empty()) {
621 size_t thread_name_len = thread_name.length();
623 if (::strcspn(thread_name.c_str(), "$#+-;:") == thread_name_len) {
625 response.PutCString(thread_name);
629 response.PutStringAsRawHex8(thread_name);

Completed in 154 milliseconds

12