Symbol: thread__tid
tools/perf/builtin-kmem.c
979
dump_printf(" ... thread: %s:%d\n", thread__comm_str(thread), thread__tid(thread));
tools/perf/builtin-report.c
1009
pr_err("Missing parent thread of %d\n", thread__tid(a));
tools/perf/builtin-report.c
1014
pr_err("Missing parent thread of %d\n", thread__tid(b));
tools/perf/builtin-report.c
1023
if (thread__tid(a) == thread__tid(b)) {
tools/perf/builtin-report.c
1028
res = thread__tid(a) < thread__tid(b) ? -1 : 1;
tools/perf/builtin-report.c
909
if (thread__tid(thread) <= 0)
tools/perf/builtin-report.c
917
pr_err("Missing parent thread of %d\n", thread__tid(thread));
tools/perf/builtin-report.c
929
thread__pid(thread), thread__tid(thread),
tools/perf/builtin-report.c
957
if (thread__tid(a) == thread__tid(b))
tools/perf/builtin-report.c
961
if (thread__tid(a) == 0)
tools/perf/builtin-report.c
964
if (thread__tid(b) == 0)
tools/perf/builtin-report.c
969
return thread__tid(a) < thread__tid(b) ? -1 : 1;
tools/perf/builtin-report.c
985
pr_err("Missing parent thread of %d\n", thread__tid(a));
tools/perf/builtin-report.c
996
pr_err("Missing parent thread of %d\n", thread__tid(b));
tools/perf/builtin-sched.c
1327
register_pid(sched, thread__tid(migrant), thread__comm_str(migrant));
tools/perf/builtin-sched.c
1375
thread__tid(work_list->thread));
tools/perf/builtin-sched.c
1398
l_tid = thread__tid(l->thread);
tools/perf/builtin-sched.c
1399
r_tid = thread__tid(r->thread);
tools/perf/builtin-sched.c
1750
if (new_shortname || tr->comm_changed || (verbose > 0 && thread__tid(sched_in))) {
tools/perf/builtin-sched.c
1757
tr->shortname, thread__comm_str(sched_in), thread__tid(sched_in));
tools/perf/builtin-sched.c
2050
pid_t tid = thread__tid(thread);
tools/perf/builtin-sched.c
2192
c = (thread__tid(thread) == 0) ? 'i' : 's';
tools/perf/builtin-sched.c
2219
printf(" %5c ", thread__tid(thread) == 0 ? 'I' : state);
tools/perf/builtin-sched.c
2229
if (thread__tid(thread) == 0)
tools/perf/builtin-sched.c
2859
if (!sched->idle_hist || thread__tid(thread) == 0) {
tools/perf/builtin-sched.c
913
printf("... parent: %s/%d\n", thread__comm_str(parent), thread__tid(parent));
tools/perf/builtin-sched.c
914
printf("... child: %s/%d\n", thread__comm_str(child), thread__tid(child));
tools/perf/builtin-sched.c
917
register_pid(sched, thread__tid(parent), thread__comm_str(parent));
tools/perf/builtin-sched.c
918
register_pid(sched, thread__tid(child), thread__comm_str(child));
tools/perf/builtin-trace.c
1718
if (thread__pid(thread) == thread__tid(thread)) {
tools/perf/builtin-trace.c
1724
thread__pid(thread), thread__tid(thread), fd);
tools/perf/builtin-trace.c
1918
printed += fprintf(fp, "%d ", thread__tid(thread));
tools/perf/builtin-trace.c
2681
thread__tid(thread));
tools/perf/builtin-trace.c
4133
pids[nr++] = thread__tid(parent);
tools/perf/builtin-trace.c
4929
printed += fprintf(fp, " %s (%d), ", thread__comm_str(thread), thread__tid(thread));
tools/perf/builtin-trace.c
4964
return thread__tid(a->thread) < thread__tid(b->thread)
tools/perf/builtin-trace.c
4966
: (thread__tid(a->thread) > thread__tid(b->thread) ? 1 : 0);
tools/perf/tests/hists_common.c
214
i, thread__comm_str(he->thread), thread__tid(he->thread),
tools/perf/tests/hists_output.c
135
#define PID(he) (thread__tid(he->thread))
tools/perf/ui/browsers/hists.c
2592
comm_set_str, thread__tid(thread));
tools/perf/ui/browsers/hists.c
2623
in_out, comm_set_str, thread__tid(thread));
tools/perf/util/cs-etm.c
1581
sample.tid = thread__tid(tidq->thread);
tools/perf/util/cs-etm.c
1642
sample.tid = thread__tid(tidq->prev_packet_thread);
tools/perf/util/cs-etm.c
2605
if (tid == -1 || thread__tid(tidq->thread) == tid)
tools/perf/util/data-convert-json.c
193
output_json_key_format(out, true, 3, "tid", "%i", thread__tid(al.thread));
tools/perf/util/db-export.c
543
*is_idle = !thread__pid(thread) && !thread__tid(thread);
tools/perf/util/event.c
818
dump_printf(" ... thread: %s:%d\n", thread__comm_str(thread), thread__tid(thread));
tools/perf/util/hist.c
2971
thread__tid(thread));
tools/perf/util/intel-pt.c
1463
if (ptq->guest_thread && thread__tid(ptq->guest_thread) != tid)
tools/perf/util/machine.c
1883
thread__pid(parent), thread__tid(parent));
tools/perf/util/machine.c
485
if (thread__pid(th) == thread__tid(th))
tools/perf/util/machine.c
509
thread__pid(th), thread__tid(th));
tools/perf/util/machine.c
518
pr_err("Failed to join map groups for %d:%d\n", thread__pid(th), thread__tid(th));
tools/perf/util/scripting-engines/trace-event-python.c
1192
tuple_set_s32(t, 4, thread__tid(thread));
tools/perf/util/sort.c
113
return thread__tid(right->thread) - thread__tid(left->thread);
tools/perf/util/sort.c
122
return repsep_snprintf(bf, size, "%7d:%-*.*s", thread__tid(he->thread),
tools/perf/util/sort.c
159
if (thread__pid(he->thread) == thread__tid(he->thread)) {
tools/perf/util/thread-stack.c
1129
if (ts->comm != comm && thread__pid(thread) == thread__tid(thread)) {
tools/perf/util/thread-stack.c
115
return !(thread__tid(thread) || thread__pid(thread));
tools/perf/util/thread.c
244
if (second_last && !last->start && thread__pid(thread) == thread__tid(thread))
tools/perf/util/thread.c
29
if (pid == thread__tid(thread) || pid == -1) {
tools/perf/util/thread.c
295
thread__pid(thread), thread__tid(thread)) >= (int)sizeof(path)) &&
tools/perf/util/thread.c
354
return fprintf(fp, "Thread %d %s\n", thread__tid(thread), thread__comm_str(thread)) +
tools/perf/util/thread.c
406
thread__pid(thread), thread__tid(thread),
tools/perf/util/thread.c
407
thread__pid(parent), thread__tid(parent));
tools/perf/util/thread.c
426
thread__set_ppid(thread, thread__tid(parent));
tools/perf/util/thread.c
507
tid = thread__tid(thread);
tools/perf/util/thread.c
556
if (thread__pid(thread) == thread__tid(thread))
tools/perf/util/thread.h
365
!intlist__has_entry(symbol_conf.tid_list, thread__tid(thread))) {
tools/perf/util/threads.c
156
struct threads_table_entry *table = threads__table(threads, thread__tid(thread));
tools/perf/util/threads.c
163
hashmap__delete(&table->shard, thread__tid(thread), /*old_key=*/NULL, &old_value);
tools/perf/util/threads.c
71
if (thread__tid(th) == tid)
tools/perf/util/unwind-libdw.c
403
dwfl_attach_state(dwfl, /*elf=*/NULL, thread__tid(thread), &callbacks,
tools/perf/util/unwind-libdw.c
407
err = dwfl_getthread_frames(dwfl, thread__tid(thread), frame_callback,