Searched refs:comm (Results 26 - 50 of 519) sorted by relevance

1234567891011>>

/linux-master/tools/testing/selftests/bpf/progs/
H A Dtest_ringbuf_n.c17 char comm[16]; member in struct:sample
42 bpf_get_current_comm(sample->comm, sizeof(sample->comm));
H A Dtest_ringbuf_map_key.c14 char comm[16]; member in struct:sample
49 bpf_get_current_comm(sample->comm, sizeof(sample->comm));
H A Dtest_user_ringbuf.h32 char comm[16]; member in struct:sample
H A Dtest_sk_storage_tracing.c12 char comm[16]; member in struct:sk_stg
66 bpf_core_read_str(&stg->comm, sizeof(stg->comm), &task->comm);
67 bpf_core_read_str(&task_comm, sizeof(task_comm), &task->comm);
/linux-master/tools/perf/scripts/python/bin/
H A Dsctop-report3 # args: [comm] [interval]
13 echo "usage: sctop-report [comm] [interval]"
17 comm=$1
24 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/sctop.py $comm $interval
/linux-master/sound/usb/6fire/
H A Dchip.h24 struct comm_runtime *comm; member in struct:sfire_chip
H A DMakefile2 snd-usb-6fire-y += chip.o comm.o midi.o control.o firmware.o pcm.o
/linux-master/drivers/staging/media/meson/vdec/
H A Dcodec_hevc_common.h56 struct codec_hevc_common *comm);
59 struct codec_hevc_common *comm);
62 struct codec_hevc_common *comm,
66 struct codec_hevc_common *comm,
/linux-master/tools/perf/scripts/python/
H A Dfailed-syscalls-by-pid.py6 # If a [comm] arg is specified, only syscalls called by [comm] are displayed.
20 usage = "perf script -s syscall-counts-by-pid.py [comm|pid]\n";
66 print("%-30s %10s" % ("comm [pid]", "count"))
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][pi
[all...]
H A Dsyscall-counts-by-pid.py6 # If a [comm] arg is specified, only syscalls called by [comm] are displayed.
19 usage = "perf script -s syscall-counts-by-pid.py [comm]\n";
61 print("\nsyscall events by comm/pid:\n")
63 print("%-40s %10s" % ("comm [pid]/syscalls", "count"))
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][pi
[all...]
H A Dnetdev-times.py138 if 'comm' in event.keys():
142 event['pid'], event['comm']))
232 def irq__softirq_entry(name, context, cpu, sec, nsec, pid, comm, callchain, vec):
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):
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):
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,
252 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm,
[all...]
H A Dstackcollapse.py5 # separated stack including the program name (from the "comm" field) and the
46 make_option("--no-comm", dest="include_comm",
48 help="do not separate stacks according to comm"),
63 parser.error("requesting tid but not comm is invalid")
65 parser.error("requesting pid but not comm is invalid")
112 comm = param_dict["comm"].replace(' ', '_')
115 comm = comm + sep + str(param_dict['sample']['pid'])
118 comm
[all...]
/linux-master/tools/perf/util/
H A Dcomm.c2 #include "comm.h"
181 struct comm *comm__new(const char *str, u64 timestamp, bool exec)
183 struct comm *comm = zalloc(sizeof(*comm)); local
185 if (!comm)
188 comm->start = timestamp;
189 comm->exec = exec;
191 comm->comm_str = comm_strs__findnew(str);
192 if (!comm
200 comm__override(struct comm *comm, const char *str, u64 timestamp, bool exec) argument
217 comm__free(struct comm *comm) argument
223 comm__str(const struct comm *comm) argument
[all...]
H A Dthread.c14 #include "comm.h"
46 struct comm *comm; local
61 comm = comm__new(comm_str, 0, false);
62 if (!comm)
65 list_add(&comm->list, thread__comm_list(thread));
91 struct comm *comm, *tmp_comm; local
108 list_for_each_entry_safe(comm, tmp_comm, thread__comm_list(thread), list) {
109 list_del_init(&comm
209 struct comm *comm, *last = NULL, *second_last = NULL; local
269 char *comm = NULL; local
285 const struct comm *comm = thread__comm(thread); local
304 __thread__comm_len(struct thread *thread, const char *comm) argument
319 const char *comm; local
395 const char *comm = thread__comm_str(parent); local
[all...]
H A Ddb-export.h16 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 *com
[all...]
H A Dthread-stack.h15 struct comm;
40 * @comm: comm in which call/return occurred
55 struct comm *comm; member in struct:call_return
104 int thread_stack__process(struct thread *thread, struct comm *comm,
H A Ddb-export.c14 #include "comm.h"
82 static int __db_export__comm(struct db_export *dbe, struct comm *comm, argument
85 comm->db_id = ++dbe->comm_last_db_id;
88 return dbe->export_comm(dbe, comm, thread);
93 int db_export__comm(struct db_export *dbe, struct comm *comm, argument
96 if (comm->db_id)
99 return __db_export__comm(dbe, comm, thread);
103 * Export the "exec" comm
108 db_export__exec_comm(struct db_export *dbe, struct comm *comm, struct thread *main_thread) argument
133 db_export__comm_thread(struct db_export *dbe, struct comm *comm, struct thread *thread) argument
298 struct comm *comm = NULL; local
360 struct comm *comm = NULL; local
[all...]
/linux-master/tools/perf/scripts/perl/
H A Drw-by-pid.pl48 $reads{$common_pid}{comm} = $common_comm;
70 $writes{$common_pid}{comm} = $common_comm;
77 printf("%6s %20s %10s %10s %10s\n", "pid", "comm",
84 my $comm = $reads{$pid}{comm} || "";
89 printf("%6s %-20s %10s %10s %10s\n", $pid, $comm,
95 printf("%6s %20s %6s %10s\n", "pid", "comm", "error #", "# errors");
103 my $comm = $reads{$pid}{comm} || "";
105 push @errcounts, [$pid, $comm,
[all...]
H A Drwtop.pl63 $reads{$common_pid}{comm} = $common_comm;
89 $writes{$common_pid}{comm} = $common_comm;
131 printf("%6s %20s %10s %10s %10s\n", "pid", "comm",
138 my $comm = $reads{$pid}{comm} || "";
143 printf("%6s %-20s %10s %10s %10s\n", $pid, $comm,
155 printf("%6s %20s %10s %13s\n", "pid", "comm",
162 my $comm = $writes{$pid}{comm} || "";
166 printf("%6s %-20s %10s %13s\n", $pid, $comm,
[all...]
/linux-master/drivers/scsi/aacraid/
H A Drkt.c30 * @comm: communications method
33 static int aac_rkt_select_comm(struct aac_dev *dev, int comm) argument
36 retval = aac_rx_select_comm(dev, comm);
37 if (comm == AAC_COMM_MESSAGE) {
83 * to the comm region.
/linux-master/tools/testing/selftests/drivers/net/lib/py/
H A Dremote_netns.py14 def cmd(self, comm):
15 return subprocess.Popen(["ip", "netns", "exec", self.name, "bash", "-c", comm],
/linux-master/include/trace/events/
H A Dsched.h23 __array( char, comm, TASK_COMM_LEN )
28 memcpy(__entry->comm, t->comm, TASK_COMM_LEN);
32 TP_printk("comm=%s pid=%d", __entry->comm, __entry->pid)
148 __array( char, comm, TASK_COMM_LEN )
155 memcpy(__entry->comm, p->comm, TASK_COMM_LEN);
161 TP_printk("comm=%s pid=%d prio=%d target_cpu=%03d",
162 __entry->comm, __entr
[all...]
/linux-master/tools/lib/perf/include/internal/
H A Dthreadmap.h11 char *comm; member in struct:thread_map_data
/linux-master/tools/testing/selftests/bpf/bpf_testmod/
H A Dbpf_testmod-events.h17 __array(char, comm, TASK_COMM_LEN)
23 memcpy(__entry->comm, task->comm, TASK_COMM_LEN);
27 TP_printk("pid=%d comm=%s off=%llu len=%zu",
28 __entry->pid, __entry->comm, __entry->off, __entry->len)
/linux-master/tools/testing/selftests/net/lib/py/
H A Dutils.py11 def __init__(self, comm, shell=True, fail=True, ns=None, background=False, host=None, timeout=5):
13 comm = f'ip netns exec {ns} ' + comm
19 self.comm = comm
21 self.proc = host.cmd(comm)
23 self.proc = subprocess.Popen(comm, shell=shell, stdout=subprocess.PIPE,
49 def __init__(self, comm, shell=True, fail=None, ns=None, host=None,
51 super().__init__(comm, background=True,

Completed in 190 milliseconds

1234567891011>>