Lines Matching refs:rt
233 static void PrintThread(const ReportThread *rt) { in PrintThread() argument
235 if (rt->id == kMainTid) // Little sense in describing the main thread. in PrintThread()
238 Printf(" Thread T%d", rt->id); in PrintThread()
239 if (rt->name && rt->name[0] != '\0') in PrintThread()
240 Printf(" '%s'", rt->name); in PrintThread()
242 const char *thread_status = rt->running ? "running" : "finished"; in PrintThread()
243 if (rt->thread_type == ThreadType::Worker) { in PrintThread()
244 Printf(" (tid=%llu, %s) is a GCD worker thread\n", rt->os_id, in PrintThread()
250 Printf(" (tid=%llu, %s) created by %s", rt->os_id, thread_status, in PrintThread()
251 thread_name(thrbuf, rt->parent_tid)); in PrintThread()
252 if (rt->stack) in PrintThread()
256 PrintStack(rt->stack); in PrintThread()
438 static void PrintThread(const ReportThread *rt) { in PrintThread() argument
439 if (rt->id == kMainGoroutineId) in PrintThread()
443 rt->id, rt->running ? "running" : "finished"); in PrintThread()
444 PrintStack(rt->stack); in PrintThread()