Searched refs:syscalls (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/tools/traceline/traceline/scripts/
H A Dsyscalls.py5 syscalls = { variable
H A Dscstats.py8 from syscalls import syscalls namespace
21 delta, ms, tid, syscall, syscalls.get(syscall, 'unknown'))
24 # print '%f - %d %s' % (delta, syscall, syscalls.get(syscall, 'unknown'))
H A Dalloc.py8 from syscalls import syscalls namespace
H A Dcrit_sec.py9 from syscalls import syscalls namespace
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/bin/
H A Drw-by-pid-record2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e syscalls:sys_exit_write $@
H A Drwtop-record2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e syscalls:sys_exit_write $@
H A Drw-by-file-record2 perf record -e syscalls:sys_enter_read -e syscalls:sys_enter_write $@
H A Dfailed-syscalls-report2 # description: system-wide failed syscalls
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/failed-syscalls.pl $comm
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/bin/
H A Dfutex-contention-record2 perf record -e syscalls:sys_enter_futex -e syscalls:sys_exit_futex $@
H A Dfailed-syscalls-by-pid-report2 # description: system-wide failed syscalls, by pid
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/failed-syscalls-by-pid.py $comm
/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.
32 syscalls = autodict() variable
49 syscalls[common_comm][common_pid][id][ret] += 1
51 syscalls[common_comm][common_pid][id][ret] = 1
63 comm_keys = syscalls.keys()
65 pid_keys = syscalls[comm].keys()
68 id_keys = syscalls[comm][pid].keys()
71 ret_keys = syscalls[comm][pid][id].keys()
72 for ret, val in sorted(syscalls[comm][pid][id].iteritems(), key = lambda(k, v): (v, k), reverse = True):
H A Dsyscall-counts-by-pid.py6 # If a [comm] arg is specified, only syscalls called by [comm] are displayed.
31 syscalls = autodict() variable
47 syscalls[common_comm][common_pid][id] += 1
49 syscalls[common_comm][common_pid][id] = 1
57 print "%-40s %10s\n" % ("comm [pid]/syscalls", "count"),
61 comm_keys = syscalls.keys()
63 pid_keys = syscalls[comm].keys()
66 id_keys = syscalls[comm][pid].keys()
67 for id, val in sorted(syscalls[comm][pid].iteritems(), \
H A Dsyscall-counts.py6 # If a [comm] arg is specified, only syscalls called by [comm] are displayed.
28 syscalls = autodict() variable
43 syscalls[id] += 1
45 syscalls[id] = 1
57 for id, val in sorted(syscalls.iteritems(), key = lambda(k, v): (v, k), \
H A Dsctop.py6 # syscall. If a [comm] arg is specified, only syscalls called by
39 syscalls = autodict() variable
52 syscalls[id] += 1
54 syscalls[id] = 1
68 for id, val in sorted(syscalls.iteritems(), key = lambda(k, v): (v, k), \
74 syscalls.clear()
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/
H A Drwtop.pl35 sub syscalls::sys_exit_read subroutine
53 sub syscalls::sys_enter_read subroutine
66 sub syscalls::sys_exit_write subroutine
79 sub syscalls::sys_enter_write subroutine
H A Drw-by-file.pl28 sub syscalls::sys_enter_read subroutine
39 sub syscalls::sys_enter_write subroutine
H A Drw-by-pid.pl24 sub syscalls::sys_exit_read subroutine
40 sub syscalls::sys_enter_read subroutine
51 sub syscalls::sys_exit_write subroutine
62 sub syscalls::sys_enter_write subroutine
/external/ltrace/
H A Doptions.h37 int syscalls; /* -S: display system calls */ member in struct:options_t
H A Doptions.c49 .syscalls = 0, /* display syscalls */
664 options.syscalls = 1;
H A Dhandle_event.c429 = protolib_cache_load(&g_protocache, "syscalls", 0, 1);
565 if (options.syscalls)
607 if (options.syscalls) {
629 if (options.syscalls)
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-trace.c428 } syscalls; member in struct:trace
556 if (id > trace->syscalls.max) {
557 struct syscall *nsyscalls = realloc(trace->syscalls.table, (id + 1) * sizeof(*sc));
562 if (trace->syscalls.max != -1) {
563 memset(nsyscalls + trace->syscalls.max + 1, 0,
564 (id - trace->syscalls.max) * sizeof(*sc));
569 trace->syscalls.table = nsyscalls;
570 trace->syscalls.max = id;
573 sc = trace->syscalls.table + id;
592 sc->tp_format = event_format__new("syscalls", tp_nam
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dmmap-basic.c8 * This test will generate random numbers of calls to some getpid syscalls,
10 * the syscalls.
15 * Then it checks if the number of syscalls reported as perf events by
16 * the kernel corresponds to the number of syscalls made.
28 pid_t (*syscalls[])(void) = { (void *)getsid, getppid, getpgrp,
68 evsels[i] = perf_evsel__newtp("syscalls", name, i);
98 int foo = syscalls[i]();
/external/strace/
H A Dstrace.spec92 + fixed decoding of *xattr syscalls (#885233);
157 - new syscalls: getcpu, eventfd, timerfd, signalfd, epoll_pwait,
164 - *at, inotify*, pselect6, ppoll and unshare syscalls (#178633, #191275)
182 - Fix bogus decoding of syscalls >= 300 (#201462, #202620).
194 - Fix biarch decoding of socket syscalls (#174354).
196 - Accept numeric syscalls in -e (#174798).
201 - Correct printing of restarting syscalls (#165469).
207 - Don't display inappropriate syscalls for -e trace=file (#159340).
247 - grok epoll_* syscalls (#134463)
310 - new upstream version, handles yet more 2.5 syscalls, x86_6
[all...]
/external/chromium_org/tools/traceline/traceline/
H A Dmain.cc1031 std::map<int, const char*> syscalls = CreateSyscallMap(); local
1150 if (syscalls.count(syscall) == 1) {
1151 std::string sname = syscalls[syscall];
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dmalloc_hook_mmap_linux.h45 #include <sys/linux-syscalls.h>

Completed in 202 milliseconds

12