Lines Matching refs:thread

372 			  struct thread *thread __maybe_unused,  in print_sample_iregs()
389 struct thread *thread, in print_sample_start() argument
399 printf("%8.8s ", thread__comm_str(thread)); in print_sample_start()
401 printf("%s ", thread__comm_str(thread)); in print_sample_start()
403 printf("%16s ", thread__comm_str(thread)); in print_sample_start()
443 struct thread *thread __maybe_unused, in print_sample_brstack()
465 struct thread *thread __maybe_unused, in print_sample_brstacksym()
483 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, from, &alf); in print_sample_brstacksym()
487 thread__find_addr_map(thread, cpumode, MAP__FUNCTION, to, &alt); in print_sample_brstacksym()
505 struct thread *thread, in print_sample_addr() argument
515 perf_event__preprocess_sample_addr(event, sample, thread, &al); in print_sample_addr()
535 struct thread *thread, in print_sample_bts() argument
563 print_sample_addr(event, sample, thread, attr); in print_sample_bts()
594 struct thread *thread = al->thread; in process_event() local
600 print_sample_start(sample, thread, evsel); in process_event()
614 print_sample_bts(event, sample, evsel, thread, al); in process_event()
622 print_sample_addr(event, sample, thread, attr); in process_event()
636 print_sample_iregs(event, sample, thread, attr); in process_event()
639 print_sample_brstack(event, sample, thread, attr); in process_event()
641 print_sample_brstacksym(event, sample, thread, attr); in process_event()
780 struct thread *thread; in process_comm_event() local
786 thread = machine__findnew_thread(machine, event->comm.pid, event->comm.tid); in process_comm_event()
787 if (thread == NULL) { in process_comm_event()
801 print_sample_start(sample, thread, evsel); in process_comm_event()
805 thread__put(thread); in process_comm_event()
814 struct thread *thread; in process_fork_event() local
822 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid); in process_fork_event()
823 if (thread == NULL) { in process_fork_event()
834 print_sample_start(sample, thread, evsel); in process_fork_event()
836 thread__put(thread); in process_fork_event()
846 struct thread *thread; in process_exit_event() local
851 thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid); in process_exit_event()
852 if (thread == NULL) { in process_exit_event()
863 print_sample_start(sample, thread, evsel); in process_exit_event()
869 thread__put(thread); in process_exit_event()
878 struct thread *thread; in process_mmap_event() local
886 thread = machine__findnew_thread(machine, event->mmap.pid, event->mmap.tid); in process_mmap_event()
887 if (thread == NULL) { in process_mmap_event()
898 print_sample_start(sample, thread, evsel); in process_mmap_event()
900 thread__put(thread); in process_mmap_event()
909 struct thread *thread; in process_mmap2_event() local
917 thread = machine__findnew_thread(machine, event->mmap2.pid, event->mmap2.tid); in process_mmap2_event()
918 if (thread == NULL) { in process_mmap2_event()
929 print_sample_start(sample, thread, evsel); in process_mmap2_event()
931 thread__put(thread); in process_mmap2_event()
940 struct thread *thread; in process_switch_event() local
948 thread = machine__findnew_thread(machine, sample->pid, in process_switch_event()
950 if (thread == NULL) { in process_switch_event()
955 print_sample_start(sample, thread, evsel); in process_switch_event()
957 thread__put(thread); in process_switch_event()