Lines Matching refs:thread

339 			       struct thread *thread,  in print_sample_start()  argument
349 printf("%8.8s ", thread__comm_str(thread)); in print_sample_start()
351 printf("%s ", thread__comm_str(thread)); in print_sample_start()
353 printf("%16s ", thread__comm_str(thread)); in print_sample_start()
381 struct thread *thread, in print_sample_addr() argument
391 perf_event__preprocess_sample_addr(event, sample, thread, &al); in print_sample_addr()
411 struct thread *thread, in print_sample_bts() argument
439 print_sample_addr(event, sample, thread, attr); in print_sample_bts()
451 struct thread *thread = al->thread; in process_event() local
457 print_sample_start(sample, thread, evsel); in process_event()
468 print_sample_bts(event, sample, evsel, thread, al); in process_event()
476 print_sample_addr(event, sample, thread, attr); in process_event()
621 struct thread *thread; in process_comm_event() local
627 thread = machine__findnew_thread(machine, event->comm.pid, event->comm.tid); in process_comm_event()
628 if (thread == NULL) { in process_comm_event()
642 print_sample_start(sample, thread, evsel); in process_comm_event()
655 struct thread *thread; in process_fork_event() local
663 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid); in process_fork_event()
664 if (thread == NULL) { in process_fork_event()
675 print_sample_start(sample, thread, evsel); in process_fork_event()
685 struct thread *thread; in process_exit_event() local
690 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid); in process_exit_event()
691 if (thread == NULL) { in process_exit_event()
702 print_sample_start(sample, thread, evsel); in process_exit_event()
716 struct thread *thread; in process_mmap_event() local
724 thread = machine__findnew_thread(machine, event->mmap.pid, event->mmap.tid); in process_mmap_event()
725 if (thread == NULL) { in process_mmap_event()
736 print_sample_start(sample, thread, evsel); in process_mmap_event()
747 struct thread *thread; in process_mmap2_event() local
755 thread = machine__findnew_thread(machine, event->mmap2.pid, event->mmap2.tid); in process_mmap2_event()
756 if (thread == NULL) { in process_mmap2_event()
767 print_sample_start(sample, thread, evsel); in process_mmap2_event()