HomeSort by relevance Sort by last modified time
    Searched refs:syscalls (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/tools/traceline/traceline/scripts/
syscalls.py 5 syscalls = { variable
    [all...]
scstats.py 8 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'))
alloc.py 8 from syscalls import syscalls namespace
crit_sec.py 9 from syscalls import syscalls namespace
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/bin/
rw-by-pid-record 2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e syscalls:sys_exit_write $@
rwtop-record 2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e syscalls:sys_exit_write $@
rw-by-file-record 2 perf record -e syscalls:sys_enter_read -e syscalls:sys_enter_write $@
failed-syscalls-report 2 # 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/
futex-contention-record 2 perf record -e syscalls:sys_enter_futex -e syscalls:sys_exit_futex $@
failed-syscalls-by-pid-report 2 # 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/
syscall-counts-by-pid.py 6 # 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(), \
failed-syscalls-by-pid.py 6 # 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):
sctop.py 6 # 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()
syscall-counts.py 6 # 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), \
  /bionic/libc/include/sys/
syscall.h 36 #include <sys/glibc-syscalls.h> /* glibc-compatible SYS_* aliases for our __NR_* names. */
  /development/ndk/platforms/android-L/include/sys/
syscall.h 36 #include <sys/glibc-syscalls.h> /* glibc-compatible SYS_* aliases for our __NR_* names. */
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/sys/
syscall.h 36 #include <sys/glibc-syscalls.h> /* glibc-compatible SYS_* aliases for our __NR_* names. */
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/sys/
syscall.h 36 #include <sys/glibc-syscalls.h> /* glibc-compatible SYS_* aliases for our __NR_* names. */
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/sys/
syscall.h 36 #include <sys/glibc-syscalls.h> /* glibc-compatible SYS_* aliases for our __NR_* names. */
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/
rw-by-pid.pl 24 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
rwtop.pl 35 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
rw-by-file.pl 28 sub syscalls::sys_enter_read subroutine
39 sub syscalls::sys_enter_write subroutine
  /external/ltrace/
options.h 37 int syscalls; /* -S: display system calls */ member in struct:options_t
  /bionic/libc/tools/
gensyscalls.py 388 self.syscalls = []
394 self.syscalls = parser.syscalls
397 for syscall in self.syscalls:
412 E("socketcall_id for dispatch syscalls is only supported for x86 in '%s'" % t)
428 syscalls = set() # MIPS defines everything three times; work around that.
432 syscalls.add(m.group(1))
433 for syscall in sorted(syscalls):
439 glibc_syscalls_h_path = "include/sys/glibc-syscalls.h"
465 for syscall in self.syscalls
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-trace.c 428 } 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_name)
    [all...]

Completed in 588 milliseconds

1 2