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

/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DThreadLauncher.h33 std::string thread_name; member in struct:lldb_private::ThreadLauncher::HostThreadCreateInfo
38 : thread_name(name ? name : "")
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DQueueItem.h176 SetThreadLabel (std::string thread_name) argument
178 m_thread_label = thread_name;
/freebsd-11.0-release/contrib/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.cc77 const char *thread_name(char *buf, int tid) { function in namespace:__tsan
160 thread_name(thrbuf, mop->tid));
186 thread_name(thrbuf, loc->tid));
189 Printf(" Location is stack of %s.\n\n", thread_name(thrbuf, loc->tid));
191 Printf(" Location is TLS of %s.\n\n", thread_name(thrbuf, loc->tid));
194 loc->fd, thread_name(thrbuf, loc->tid));
238 thread_name(thrbuf, rt->parent_tid));
311 Printf("%s:\n", thread_name(thrbuf, rep->unique_tids[i]));
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Host/common/
H A DHostNativeThreadBase.cpp71 ThisThread::SetName(info->thread_name.c_str(), HostInfo::GetMaxThreadNameLength());
H A DHost.cpp111 char thread_name[256]; local
112 ::snprintf(thread_name, sizeof(thread_name), "<lldb.host.wait4(pid=%" PRIu64 ")>", pid);
113 return ThreadLauncher::LaunchThread(thread_name, MonitorChildProcessThreadFunction, info_ptr, NULL);
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBBreakpointLocation.h80 SetThreadName (const char *thread_name);
H A DSBBreakpoint.h107 SetThreadName (const char *thread_name);
/freebsd-11.0-release/contrib/jemalloc/src/
H A Dprof.c130 static char *prof_thread_name_alloc(tsdn_t *tsdn, const char *thread_name);
1309 (tdata->thread_name != NULL) ? " " : "",
1310 (tdata->thread_name != NULL) ? tdata->thread_name : ""))
1795 char *thread_name, bool active)
1811 tdata->thread_name = thread_name;
1881 if (tdata->thread_name != NULL)
1882 idalloctm(tsdn, tdata->thread_name, NULL, true, true);
1924 char *thread_name local
1794 prof_tdata_init_impl(tsdn_t *tsdn, uint64_t thr_uid, uint64_t thr_discrim, char *thread_name, bool active) argument
2033 prof_thread_name_alloc(tsdn_t *tsdn, const char *thread_name) argument
2054 prof_thread_name_set(tsd_t *tsd, const char *thread_name) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/
H A DMemoryHistoryASan.cpp100 static void CreateHistoryThreadFromValueObject(ProcessSP process_sp, ValueObjectSP return_value_sp, const char *type, const char *thread_name, HistoryThreads & result) argument
135 history_thread->SetThreadName(thread_name);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Core/
H A DCommunication.cpp246 char thread_name[1024]; local
247 snprintf(thread_name, sizeof(thread_name), "<lldb.comm.%s>", m_broadcaster_name.AsCString());
251 m_read_thread = ThreadLauncher::LaunchThread(thread_name, Communication::ReadThread, this, error_ptr);
H A DLog.cpp132 llvm::SmallString<32> thread_name; local
133 ThisThread::GetName(thread_name);
134 if (!thread_name.empty())
135 header.Printf ("%s ", thread_name.c_str());
H A DIOHandler.cpp4450 const char *thread_name = thread_sp->GetName(); variable
4451 if (thread_name && thread_name[0])
4452 thread_menu_title.Printf (" %s", thread_name);
/freebsd-11.0-release/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-11.0-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp172 BreakpointLocation::SetThreadName (const char *thread_name) argument
174 if (thread_name != nullptr)
175 GetLocationOptions()->GetThreadSpec()->SetName(thread_name);
181 m_options_ap->GetThreadSpec()->SetName(thread_name);
H A DBreakpoint.cpp262 Breakpoint::SetThreadName (const char *thread_name) argument
265 && ::strcmp (m_options.GetThreadSpec()->GetName(), thread_name) == 0)
268 m_options.GetThreadSpec()->SetName (thread_name);
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DBreakpointLocation.h201 SetThreadName (const char *thread_name);
H A DBreakpoint.h441 SetThreadName (const char *thread_name);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBBreakpointLocation.cpp256 SBBreakpointLocation::SetThreadName (const char *thread_name) argument
261 m_opaque_sp->SetThreadName (thread_name);
H A DSBBreakpoint.cpp433 SBBreakpoint::SetThreadName (const char *thread_name) argument
438 static_cast<void*>(m_opaque_sp.get()), thread_name);
443 m_opaque_sp->GetOptions()->GetThreadSpec()->SetName (thread_name);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DFreeBSDThread.cpp140 llvm::SmallString<32> thread_name; local
141 HostNativeThread::GetName(GetID(), thread_name); local
142 m_thread_name = thread_name.c_str();
/freebsd-11.0-release/contrib/jemalloc/include/jemalloc/internal/
H A Dprof.h189 char *thread_name; member in struct:prof_tdata_s
309 int prof_thread_name_set(tsd_t *tsd, const char *thread_name);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp571 const std::string thread_name = thread_sp->GetName (); local
572 if (! thread_name.empty())
573 thread_obj_sp->SetObject("name", std::make_shared<JSONString>(thread_name));
654 const std::string thread_name = thread_sp->GetName (); local
655 if (!thread_name.empty ())
657 size_t thread_name_len = thread_name.length ();
659 if (::strcspn (thread_name.c_str (), "$#+-;:") == thread_name_len)
662 response.PutCString (thread_name.c_str ());
668 response.PutCStringAsRawHex8 (thread_name.c_str ());
H A DProcessGDBRemote.h427 const std::string &thread_name,
H A DProcessGDBRemote.cpp1917 const std::string &thread_name,
1961 thread_sp->SetName (thread_name.empty() ? NULL : thread_name.c_str());
2161 std::string thread_name; local
2179 &thread_name,
2218 thread_name = object->GetStringValue();
2327 thread_name,
2374 std::string thread_name; local
2466 thread_name.swap (value);
2470 thread_name
1914 SetThreadStopInfo(lldb::tid_t tid, ExpeditedRegisterMap &expedited_register_map, uint8_t signo, const std::string &thread_name, const std::string &reason, const std::string &description, uint32_t exc_type, const std::vector<addr_t> &exc_data, addr_t thread_dispatch_qaddr, bool queue_vars_valid, LazyBool associated_with_dispatch_queue, addr_t dispatch_queue_t, std::string &queue_name, QueueKind queue_kind, uint64_t queue_serial) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp4053 char thread_name[1024];
4059 snprintf(thread_name, sizeof(thread_name), "intern-state-OV");
4061 snprintf(thread_name, sizeof(thread_name), "intern-state");
4066 snprintf(thread_name, sizeof(thread_name), "<lldb.process.internal-state-override(pid=%" PRIu64 ")>", GetID());
4068 snprintf(thread_name, sizeof(thread_name), "<lldb.process.internal-state(pid=%" PRIu64 ")>", GetID());
4073 m_private_state_thread = ThreadLauncher::LaunchThread(thread_name, Proces
[all...]

Completed in 364 milliseconds