Searched refs:comm (Results 1 - 25 of 743) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/tools/perf/scripts/perl/bin/
H A Drw-by-file-report3 # args: <comm>
5 echo "usage: rw-by-file <comm>"
8 comm=$1
10 perf trace $@ -s ~/libexec/perf-core/scripts/perl/rw-by-file.pl $comm
H A Dfailed-syscalls-report3 # args: [comm]
6 comm=$1
10 perf trace $@ -s ~/libexec/perf-core/scripts/perl/failed-syscalls.pl $comm
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/tools/perf/scripts/perl/bin/
H A Drw-by-file-report3 # args: <comm>
5 echo "usage: rw-by-file <comm>"
8 comm=$1
10 perf trace $@ -s ~/libexec/perf-core/scripts/perl/rw-by-file.pl $comm
H A Dfailed-syscalls-report3 # args: [comm]
6 comm=$1
10 perf trace $@ -s ~/libexec/perf-core/scripts/perl/failed-syscalls.pl $comm
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/tools/perf/scripts/perl/
H A Dfailed-syscalls.pl6 # If a [comm] arg is specified, only syscalls called by [comm] are displayed.
31 printf("\nfailed syscalls by comm:\n\n");
33 printf("%-20s %10s\n", "comm", "# errors");
36 foreach my $comm (sort {$failed_syscalls{$b} <=> $failed_syscalls{$a}}
38 next if ($for_comm && $comm ne $for_comm);
40 printf("%-20s %10s\n", $comm, $failed_syscalls{$comm});
H A Dworkqueue-stats.pl33 $cpus[$common_cpu]{$thread_pid}{comm} = $thread_comm;
43 $cpus[$common_cpu]{$thread_pid}{comm} = $thread_comm;
53 $cpus[$common_cpu]{$thread_pid}{comm} = $thread_comm;
63 $cpus[$common_cpu]{$thread_pid}{comm} = $thread_comm;
76 my $comm = $$wqhash{'comm'} || "";
78 printf("%3u %6u %6u\t%-20s\n", $cpu, $ins, $exe, $comm);
92 my $comm = $$wqhash{'comm'} || "";
95 $comm);
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/tools/perf/scripts/python/bin/
H A Dfailed-syscalls-by-pid-report3 # args: [comm]
6 comm=$1
10 perf trace $@ -s ~/libexec/perf-core/scripts/python/failed-syscalls-by-pid.py $comm
H A Dsyscall-counts-by-pid-report3 # args: [comm]
6 comm=$1
10 perf trace $@ -s ~/libexec/perf-core/scripts/python/syscall-counts-by-pid.py $comm
H A Dsyscall-counts-report3 # args: [comm]
6 comm=$1
10 perf trace $@ -s ~/libexec/perf-core/scripts/python/syscall-counts.py $comm
H A Dsctop-report3 # args: [comm] [interval]
13 echo "usage: sctop-report [comm] [interval]"
17 comm=$1
24 perf trace $@ -s ~/libexec/perf-core/scripts/python/sctop.py $comm $interval
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/tools/perf/scripts/perl/
H A Dfailed-syscalls.pl6 # If a [comm] arg is specified, only syscalls called by [comm] are displayed.
31 printf("\nfailed syscalls by comm:\n\n");
33 printf("%-20s %10s\n", "comm", "# errors");
36 foreach my $comm (sort {$failed_syscalls{$b} <=> $failed_syscalls{$a}}
38 next if ($for_comm && $comm ne $for_comm);
40 printf("%-20s %10s\n", $comm, $failed_syscalls{$comm});
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/tools/perf/scripts/python/bin/
H A Dfailed-syscalls-by-pid-report3 # args: [comm]
6 comm=$1
10 perf trace $@ -s ~/libexec/perf-core/scripts/python/failed-syscalls-by-pid.py $comm
H A Dsyscall-counts-by-pid-report3 # args: [comm]
6 comm=$1
10 perf trace $@ -s ~/libexec/perf-core/scripts/python/syscall-counts-by-pid.py $comm
H A Dsyscall-counts-report3 # args: [comm]
6 comm=$1
10 perf trace $@ -s ~/libexec/perf-core/scripts/python/syscall-counts.py $comm
H A Dsctop-report3 # args: [comm] [interval]
13 echo "usage: sctop-report [comm] [interval]"
17 comm=$1
24 perf trace $@ -s ~/libexec/perf-core/scripts/python/sctop.py $comm $interval
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/tools/perf/util/
H A Dthread.c57 self->comm = malloc(32);
58 if (self->comm)
59 snprintf(self->comm, 32, ":%d", self->pid);
68 free(self->comm);
72 int thread__set_comm(struct thread *self, const char *comm) argument
76 if (self->comm)
77 free(self->comm);
78 self->comm = strdup(comm);
79 err = self->comm
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/tools/perf/util/
H A Dthread.c57 self->comm = malloc(32);
58 if (self->comm)
59 snprintf(self->comm, 32, ":%d", self->pid);
68 free(self->comm);
72 int thread__set_comm(struct thread *self, const char *comm) argument
76 if (self->comm)
77 free(self->comm);
78 self->comm = strdup(comm);
79 err = self->comm
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.0.25b/packaging/Solaris/
H A Dpreremove6 SMBD=`ps -e -o pid,comm | grep smbd | awk '{print $1}'`
7 NMBD=`ps -e -o pid,comm | grep nmbd | awk '{print $1}'`
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/packaging/Solaris/
H A Dpreremove6 SMBD=`ps -e -o pid,comm | grep smbd | awk '{print $1}'`
7 NMBD=`ps -e -o pid,comm | grep nmbd | awk '{print $1}'`
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.0.25b/packaging/Solaris/
H A Dpreremove6 SMBD=`ps -e -o pid,comm | grep smbd | awk '{print $1}'`
7 NMBD=`ps -e -o pid,comm | grep nmbd | awk '{print $1}'`
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/packaging/Solaris/
H A Dpreremove6 SMBD=`ps -e -o pid,comm | grep smbd | awk '{print $1}'`
7 NMBD=`ps -e -o pid,comm | grep nmbd | awk '{print $1}'`
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/packaging/Solaris/
H A Dpreremove6 SMBD=`ps -e -o pid,comm | grep smbd | awk '{print $1}'`
7 NMBD=`ps -e -o pid,comm | grep nmbd | awk '{print $1}'`
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.0.25b/packaging/Solaris/
H A Dpreremove6 SMBD=`ps -e -o pid,comm | grep smbd | awk '{print $1}'`
7 NMBD=`ps -e -o pid,comm | grep nmbd | awk '{print $1}'`
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/trace/events/
H A Dsched.h20 __array( char, comm, TASK_COMM_LEN )
25 memcpy(__entry->comm, t->comm, TASK_COMM_LEN);
29 TP_printk("comm=%s pid=%d", __entry->comm, __entry->pid)
62 __array( char, comm, TASK_COMM_LEN )
70 memcpy(__entry->comm, p->comm, TASK_COMM_LEN);
77 TP_printk("comm=%s pid=%d prio=%d success=%d target_cpu=%03d",
78 __entry->comm, __entr
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/trace/events/
H A Dsched.h20 __array( char, comm, TASK_COMM_LEN )
25 memcpy(__entry->comm, t->comm, TASK_COMM_LEN);
29 TP_printk("comm=%s pid=%d", __entry->comm, __entry->pid)
62 __array( char, comm, TASK_COMM_LEN )
70 memcpy(__entry->comm, p->comm, TASK_COMM_LEN);
77 TP_printk("comm=%s pid=%d prio=%d success=%d target_cpu=%03d",
78 __entry->comm, __entr
[all...]

Completed in 196 milliseconds

1234567891011>>