Lines Matching full:thread_name
98 char thread_name[256];
99 ::snprintf (thread_name, sizeof(thread_name), "<lldb.host.wait4(pid=%" PRIu64 ")>", pid);
100 thread = ThreadCreate (thread_name,
532 Host::ThreadCreated (const char *thread_name)
553 std::string thread_name;
558 thread_name (name ? name : ""),
569 Host::ThreadCreated (info->thread_name.c_str());
584 const char *thread_name,
593 HostThreadCreateInfo *info_ptr = new HostThreadCreateInfo (thread_name, thread_fptr, thread_arg);
700 const char *thread_name, size_t len)
708 const char *lastdot = ::strrchr (thread_name, '.');
710 if (lastdot && lastdot != thread_name)
711 thread_name = lastdot + 1;
712 ::strncpy (namebuf, thread_name, len);