/tools/perf/util/ |
D | comm.c | 108 struct comm *comm__new(const char *str, u64 timestamp, bool exec) in comm__new() 110 struct comm *comm = zalloc(sizeof(*comm)); in comm__new() local 112 if (!comm) in comm__new() 115 comm->start = timestamp; in comm__new() 116 comm->exec = exec; in comm__new() 118 comm->comm_str = comm_str__findnew(str, &comm_str_root); in comm__new() 119 if (!comm->comm_str) { in comm__new() 120 free(comm); in comm__new() 124 return comm; in comm__new() 127 int comm__override(struct comm *comm, const char *str, u64 timestamp, bool exec) in comm__override() argument [all …]
|
D | comm.h | 11 struct comm { struct 22 void comm__free(struct comm *comm); argument 23 struct comm *comm__new(const char *str, u64 timestamp, bool exec); 24 const char *comm__str(const struct comm *comm); 25 int comm__override(struct comm *comm, const char *str, u64 timestamp,
|
D | thread.c | 42 struct comm *comm; in thread__new() local 61 comm = comm__new(comm_str, 0, false); in thread__new() 63 if (!comm) in thread__new() 66 list_add(&comm->list, &thread->comm_list); in thread__new() 84 struct comm *comm, *tmp_comm; in thread__delete() local 103 list_for_each_entry_safe(comm, tmp_comm, &thread->comm_list, list) { in thread__delete() 104 list_del_init(&comm->list); in thread__delete() 105 comm__free(comm); in thread__delete() 208 struct comm *thread__comm(const struct thread *thread) in thread__comm() 213 return list_first_entry(&thread->comm_list, struct comm, list); in thread__comm() [all …]
|
D | db-export.c | 82 static int __db_export__comm(struct db_export *dbe, struct comm *comm, in __db_export__comm() argument 85 comm->db_id = ++dbe->comm_last_db_id; in __db_export__comm() 88 return dbe->export_comm(dbe, comm, thread); in __db_export__comm() 93 int db_export__comm(struct db_export *dbe, struct comm *comm, in db_export__comm() argument 96 if (comm->db_id) in db_export__comm() 99 return __db_export__comm(dbe, comm, thread); in db_export__comm() 108 int db_export__exec_comm(struct db_export *dbe, struct comm *comm, in db_export__exec_comm() argument 113 if (comm->db_id) in db_export__exec_comm() 116 err = __db_export__comm(dbe, comm, main_thread); in db_export__exec_comm() 130 return db_export__comm_thread(dbe, comm, main_thread); in db_export__exec_comm() [all …]
|
D | db-export.h | 16 struct comm; 46 int (*export_comm)(struct db_export *dbe, struct comm *comm, 49 struct comm *comm, struct thread *thread); 86 int db_export__comm(struct db_export *dbe, struct comm *comm, 88 int db_export__exec_comm(struct db_export *dbe, struct comm *comm, 90 int db_export__comm_thread(struct db_export *dbe, struct comm *comm,
|
D | thread-stack.h | 15 struct comm; 19 struct comm; 56 struct comm *comm; member 105 int thread_stack__process(struct thread *thread, struct comm *comm,
|
D | thread.h | 66 struct comm; 92 int __thread__set_comm(struct thread *thread, const char *comm, u64 timestamp, 94 static inline int thread__set_comm(struct thread *thread, const char *comm, in thread__set_comm() argument 97 return __thread__set_comm(thread, comm, timestamp, false); in thread__set_comm() 103 struct comm *thread__comm(const struct thread *thread); 104 struct comm *thread__exec_comm(const struct thread *thread);
|
/tools/perf/tests/ |
D | keep-tracking.c | 33 static int find_comm(struct evlist *evlist, const char *comm) in find_comm() argument 46 (pid_t)event->comm.pid == getpid() && in find_comm() 47 (pid_t)event->comm.tid == getpid() && in find_comm() 48 strcmp(event->comm.comm, comm) == 0) in find_comm() 79 const char *comm; in test__keep_tracking() local 99 evsel->core.attr.comm = 1; in test__keep_tracking() 118 comm = "Test COMM 1"; in test__keep_tracking() 119 CHECK__(prctl(PR_SET_NAME, (unsigned long)comm, 0, 0, 0)); in test__keep_tracking() 123 found = find_comm(evlist, comm); in test__keep_tracking() 140 comm = "Test COMM 2"; in test__keep_tracking() [all …]
|
D | switch-tracking.c | 72 union perf_event *event, const char *comm, int nr) in check_comm() argument 75 (pid_t)event->comm.pid == getpid() && in check_comm() 76 (pid_t)event->comm.tid == getpid() && in check_comm() 77 strcmp(event->comm.comm, comm) == 0) { in check_comm() 83 pr_debug3("comm event: %s nr: %d\n", event->comm.comm, nr); in check_comm() 341 const char *comm; in test__switch_tracking() local 444 if (!tracking_evsel->core.attr.mmap || !tracking_evsel->core.attr.comm) { in test__switch_tracking() 452 if (evsel->core.attr.mmap || evsel->core.attr.comm) { in test__switch_tracking() 485 comm = "Test COMM 1"; in test__switch_tracking() 486 err = prctl(PR_SET_NAME, (unsigned long)comm, 0, 0, 0); in test__switch_tracking() [all …]
|
/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
D | EventClass.py | 26 def create_event(name, comm, dso, symbol, raw_buf): argument 28 event = PebsEvent(name, comm, dso, symbol, raw_buf) 30 event = PebsNHM(name, comm, dso, symbol, raw_buf) 32 event = PerfEvent(name, comm, dso, symbol, raw_buf) 38 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_GENERIC): argument 40 self.comm = comm 49 (self.name, self.symbol, self.comm, self.dso)) 58 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_PEBS): argument 72 PerfEvent.__init__(self, name, comm, dso, symbol, raw_buf, ev_type) 87 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_PEBS_LL): argument [all …]
|
/tools/perf/scripts/perl/ |
D | rw-by-pid.pl | 48 $reads{$common_pid}{comm} = $common_comm; 70 $writes{$common_pid}{comm} = $common_comm; 84 my $comm = $reads{$pid}{comm} || ""; 89 printf("%6s %-20s %10s %10s %10s\n", $pid, $comm, 103 my $comm = $reads{$pid}{comm} || ""; 105 push @errcounts, [$pid, $comm, $error, $errcount]; 125 my $comm = $writes{$pid}{comm} || ""; 129 printf("%6s %-20s %10s %10s\n", $pid, $comm, 143 my $comm = $writes{$pid}{comm} || ""; 145 push @errcounts, [$pid, $comm, $error, $errcount];
|
D | failed-syscalls.pl | 41 foreach my $comm (sort {$failed_syscalls{$b} <=> $failed_syscalls{$a}} 43 next if ($for_comm && $comm ne $for_comm); 45 printf("%-20s %10s\n", $comm, $failed_syscalls{$comm});
|
D | rwtop.pl | 63 $reads{$common_pid}{comm} = $common_comm; 89 $writes{$common_pid}{comm} = $common_comm; 138 my $comm = $reads{$pid}{comm} || ""; 143 printf("%6s %-20s %10s %10s %10s\n", $pid, $comm, 162 my $comm = $writes{$pid}{comm} || ""; 166 printf("%6s %-20s %10s %13s\n", $pid, $comm,
|
/tools/perf/scripts/python/ |
D | netdev-times.py | 232 def irq__softirq_entry(name, context, cpu, sec, nsec, pid, comm, callchain, vec): argument 235 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec) 238 def irq__softirq_exit(name, context, cpu, sec, nsec, pid, comm, callchain, vec): argument 241 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec) 244 def irq__softirq_raise(name, context, cpu, sec, nsec, pid, comm, callchain, vec): argument 247 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec) 250 def irq__irq_handler_entry(name, context, cpu, sec, nsec, pid, comm, argument 252 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, 256 def irq__irq_handler_exit(name, context, cpu, sec, nsec, pid, comm, callchain, irq, ret): argument 257 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, irq, ret) [all …]
|
D | failed-syscalls-by-pid.py | 70 for comm in comm_keys: 71 pid_keys = syscalls[comm].keys() 73 print("\n%s [%d]" % (comm, pid)) 74 id_keys = syscalls[comm][pid].keys() 77 ret_keys = syscalls[comm][pid][id].keys() 78 …for ret, val in sorted(syscalls[comm][pid][id].items(), key = lambda kv: (kv[1], kv[0]), reverse =…
|
D | intel-pt-events.py | 80 def print_common_start(comm, sample, name): argument 86 (comm, pid, tid, cpu, ts / 1000000000, ts %1000000000, name), 97 comm = param_dict["comm"] 112 print_common_start(comm, sample, name) 116 print_common_start(comm, sample, name) 120 print_common_start(comm, sample, name) 124 print_common_start(comm, sample, name) 128 print_common_start(comm, sample, name) 132 print_common_start(comm, sample, name)
|
D | syscall-counts-by-pid.py | 68 for comm in comm_keys: 69 pid_keys = syscalls[comm].keys() 71 print("\n%s [%d]" % (comm, pid)) 72 id_keys = syscalls[comm][pid].keys() 73 for id, val in sorted(syscalls[comm][pid].items(),
|
D | stackcollapse.py | 112 comm = param_dict["comm"].replace(' ', '_') 115 comm = comm + sep + str(param_dict['sample']['pid']) 118 comm = comm + sep + str(param_dict['sample']['tid']) 119 stack.append(comm)
|
/tools/testing/selftests/bpf/progs/ |
D | test_skb_helpers.c | 21 char comm[TEST_COMM_LEN]; in test_skb_helpers() local 26 bpf_probe_read_kernel_str(&comm, sizeof(comm), &task->comm); in test_skb_helpers()
|
D | test_raw_tp_test_run.c | 12 int BPF_PROG(rename, struct task_struct *task, char *comm) in BPF_PROG() argument 16 if ((__u64) task == 0x1234ULL && (__u64) comm == 0x5678ULL) { in BPF_PROG() 18 return (long)task + (long)comm; in BPF_PROG()
|
/tools/bpf/bpftool/ |
D | pids.c | 47 e->id, e->pid, e->comm); in add_ref() 53 memcpy(ref->comm, e->comm, sizeof(ref->comm)); in add_ref() 63 e->id, e->pid, e->comm); in add_ref() 72 e->id, e->pid, e->comm); in add_ref() 77 memcpy(ref->comm, e->comm, sizeof(ref->comm)); in add_ref() 200 jsonw_string_field(json_writer, "comm", ref->comm); in emit_obj_refs_json() 226 printf("%s%s(%d)", i == 0 ? "" : ", ", ref->comm, ref->pid); in emit_obj_refs_plain()
|
/tools/perf/arch/x86/tests/ |
D | perf-time-to-tsc.c | 89 evsel->core.attr.comm = 1; in test__perf_time_to_tsc() 128 (pid_t)event->comm.pid != getpid() || in test__perf_time_to_tsc() 129 (pid_t)event->comm.tid != getpid()) in test__perf_time_to_tsc() 132 if (strcmp(event->comm.comm, comm1) == 0) { in test__perf_time_to_tsc() 136 if (strcmp(event->comm.comm, comm2) == 0) { in test__perf_time_to_tsc()
|
/tools/perf/scripts/perl/bin/ |
D | rw-by-file-report | 8 comm=$1 10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/rw-by-file.pl $comm
|
D | failed-syscalls-report | 6 comm=$1 10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/failed-syscalls.pl $comm
|
/tools/perf/scripts/python/bin/ |
D | syscall-counts-report | 6 comm=$1 10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/syscall-counts.py $comm
|