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

123456

/external/llvm/test/MC/MachO/
H A Dcomm-1.s3 .comm sym_comm_B, 2
4 .comm sym_comm_A, 4
5 .comm sym_comm_C, 8, 2
6 .comm sym_comm_D, 2, 3
/external/llvm/test/MC/COFF/
H A Dcomm.s4 .comm _b, 4
/external/llvm/test/MC/ELF/
H A Dalign-bss.s6 .comm foo,2048,16
H A Dcommon.s9 .comm common1,1,1
25 .comm common2,1,1
39 .comm common6,8,16
54 .comm common3,4,4
76 .comm common4,40,16
89 .comm common5,4,4
H A Dcommon2.s7 .comm vimvardict,1,8
/external/llvm/test/MC/AsmParser/
H A Ddirective_comm.s4 # CHECK: .comm a,6,2
5 # CHECK: .comm b,8
6 # CHECK: .comm c,8
8 .comm a, 4+2, 2
9 .comm b,8
H A Dlabels.s41 // CHECK: .comm "a 6",1
42 .comm "a 6", 1
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/bin/
H A Dfailed-syscalls-report3 # args: [comm]
6 comm=$1
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/failed-syscalls.pl $comm
H A Drw-by-file-report3 # args: <comm>
5 echo "usage: rw-by-file <comm>"
8 comm=$1
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/rw-by-file.pl $comm
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/bin/
H A Dsyscall-counts-report3 # args: [comm]
6 comm=$1
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/syscall-counts.py $comm
H A Dfailed-syscalls-by-pid-report3 # args: [comm]
6 comm=$1
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/failed-syscalls-by-pid.py $comm
H A Dsyscall-counts-by-pid-report3 # args: [comm]
6 comm=$1
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/syscall-counts-by-pid.py $comm
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
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dthread.c19 self->comm = malloc(32);
20 if (self->comm)
21 snprintf(self->comm, 32, ":%d", self->tid);
30 free(self->comm);
34 int thread__set_comm(struct thread *self, const char *comm) argument
38 if (self->comm)
39 free(self->comm);
40 self->comm = strdup(comm);
41 err = self->comm
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/gas64/
H A Dgas-movabs.asm1 .comm _CONE, 4, 16
/external/linux-tools-perf/perf-3.12.0/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 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...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dkeep-tracking.c26 static int find_comm(struct perf_evlist *evlist, const char *comm) argument
35 (pid_t)event->comm.pid == getpid() &&
36 (pid_t)event->comm.tid == getpid() &&
37 strcmp(event->comm.comm, comm) == 0)
68 const char *comm; local
88 evsel->attr.comm = 1;
101 * First, test that a 'comm' event can be found when the event is
107 comm
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DEventClass.py24 def create_event(name, comm, dso, symbol, raw_buf):
26 event = PebsEvent(name, comm, dso, symbol, raw_buf)
28 event = PebsNHM(name, comm, dso, symbol, raw_buf)
30 event = PerfEvent(name, comm, dso, symbol, raw_buf)
36 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_GENERIC):
38 self.comm = comm
46 print "PMU event: name=%12s, symbol=%24s, comm=%8s, dso=%12s" % (self.name, self.symbol, self.comm, self.dso)
55 def __init__(self, name, comm, ds
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/
H A Dfailed-syscalls-by-pid.py6 # If a [comm] arg is specified, only syscalls called by [comm] are displayed.
18 usage = "perf script -s syscall-counts-by-pid.py [comm|pid]\n";
59 print "%-30s %10s\n" % ("comm [pid]", "count"),
64 for comm in comm_keys:
65 pid_keys = syscalls[comm].keys()
67 print "\n%s [%d]\n" % (comm, pid),
68 id_keys = syscalls[comm][pid].keys()
71 ret_keys = syscalls[comm][pid][id].keys()
72 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.
17 usage = "perf script -s syscall-counts-by-pid.py [comm]\n";
55 print "\nsyscall events by comm/pid:\n\n",
57 print "%-40s %10s\n" % ("comm [pid]/syscalls", "count"),
62 for comm in comm_keys:
63 pid_keys = syscalls[comm].keys()
65 print "\n%s [%d]\n" % (comm, pid),
66 id_keys = syscalls[comm][pid].keys()
67 for id, val in sorted(syscalls[comm][pi
[all...]
H A Dnetdev-times.py132 if 'comm' in event.keys():
136 event['pid'], event['comm'])
227 def irq__softirq_entry(name, context, cpu, sec, nsec, pid, comm, vec):
230 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec)
233 def irq__softirq_exit(name, context, cpu, sec, nsec, pid, comm, vec):
236 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec)
239 def irq__softirq_raise(name, context, cpu, sec, nsec, pid, comm, vec):
242 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec)
245 def irq__irq_handler_entry(name, context, cpu, sec, nsec, pid, comm,
247 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm,
[all...]
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/
H A Dserialjava.py33 # http://mho.republika.pl/java/comm/
35 comm = detect_java_comm([ variable
36 'javax.comm', # Sun/IBM
43 enum = comm.CommPortIdentifier.getPortIdentifiers()
47 if el.getPortType() == comm.CommPortIdentifier.PORT_SERIAL:
64 portId = comm.CommPortIdentifier.getPortIdentifier(self._port)
66 portId = comm.CommPortIdentifier.getPortIdentifier(device(self._port)) # numbers are transformed to a comport id obj
84 jdatabits = comm.SerialPort.DATABITS_5
86 jdatabits = comm.SerialPort.DATABITS_6
88 jdatabits = comm
[all...]
/external/clang/utils/
H A Dfind-unused-diagnostics.sh15 comm -23 <(sort -u <<< "$ALL_DIAGS") <(sort -u <<< "$DIAGS_IN_SOURCES")

Completed in 218 milliseconds

123456