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

  /external/linux-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
  /bionic/libc/arch-x86/
syscalls.mk 3 syscall_src += arch-x86/syscalls/_exit.S
4 syscall_src += arch-x86/syscalls/_exit_thread.S
5 syscall_src += arch-x86/syscalls/__fork.S
6 syscall_src += arch-x86/syscalls/_waitpid.S
7 syscall_src += arch-x86/syscalls/__waitid.S
8 syscall_src += arch-x86/syscalls/wait4.S
9 syscall_src += arch-x86/syscalls/__sys_clone.S
10 syscall_src += arch-x86/syscalls/execve.S
11 syscall_src += arch-x86/syscalls/__setuid.S
12 syscall_src += arch-x86/syscalls/getuid.
    [all...]
  /bionic/libc/arch-arm/
syscalls.mk 3 syscall_src += arch-arm/syscalls/_exit.S
4 syscall_src += arch-arm/syscalls/_exit_thread.S
5 syscall_src += arch-arm/syscalls/__fork.S
6 syscall_src += arch-arm/syscalls/__waitid.S
7 syscall_src += arch-arm/syscalls/wait4.S
8 syscall_src += arch-arm/syscalls/__sys_clone.S
9 syscall_src += arch-arm/syscalls/execve.S
10 syscall_src += arch-arm/syscalls/__setuid.S
11 syscall_src += arch-arm/syscalls/getuid.S
12 syscall_src += arch-arm/syscalls/getgid.
    [all...]
  /external/linux-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
  /bionic/libc/arch-mips/
syscalls.mk 3 syscall_src += arch-mips/syscalls/_exit.S
4 syscall_src += arch-mips/syscalls/_exit_thread.S
5 syscall_src += arch-mips/syscalls/__fork.S
6 syscall_src += arch-mips/syscalls/_waitpid.S
7 syscall_src += arch-mips/syscalls/__waitid.S
8 syscall_src += arch-mips/syscalls/wait4.S
9 syscall_src += arch-mips/syscalls/__sys_clone.S
10 syscall_src += arch-mips/syscalls/execve.S
11 syscall_src += arch-mips/syscalls/__setuid.S
12 syscall_src += arch-mips/syscalls/getuid.
    [all...]
  /external/linux-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. */
  /external/linux-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 34 sub syscalls::sys_exit_read subroutine
52 sub syscalls::sys_enter_read subroutine
65 sub syscalls::sys_exit_write subroutine
78 sub syscalls::sys_enter_write subroutine
rw-by-file.pl 28 sub syscalls::sys_enter_read subroutine
39 sub syscalls::sys_enter_write subroutine
  /bionic/libc/tools/
gensyscalls.py 4 # to be placed into arch-{arm,x86,mips}/syscalls, as well as the content
207 self.syscalls = []
287 self.syscalls = parser.syscalls
290 for t in self.syscalls:
306 E("cid for dispatch syscalls is only supported for x86 in "
318 syscalls = set() # MIPS defines everything three times; work around that.
322 syscalls.add(m.group(1))
323 for syscall in sorted(syscalls):
329 glibc_syscalls_h_path = "include/sys/glibc-syscalls.h
    [all...]
bionic_utils.py 94 '''find the root of the Bionic source tree. we check for the SYSCALLS.TXT file
102 file = find_file_from_upwards(None, "SYSCALLS.TXT")
174 # parser for the SYSCALLS.TXT file
178 self.syscalls = []
290 self.syscalls.append(t)
  /hardware/ti/omap3/dspbridge/inc/
host_os.h 40 #include <linux/syscalls.h>
  /hardware/ti/omap3/dspbridge/libbridge/inc/
host_os.h 40 #include <linux/syscalls.h>
  /external/strace/
strace.spec 136 - new syscalls: getcpu, eventfd, timerfd, signalfd, epoll_pwait,
143 - *at, inotify*, pselect6, ppoll and unshare syscalls (#178633, #191275)
161 - Fix bogus decoding of syscalls >= 300 (#201462, #202620).
173 - Fix biarch decoding of socket syscalls (#174354).
175 - Accept numeric syscalls in -e (#174798).
180 - Correct printing of restarting syscalls (#165469).
186 - Don't display inappropriate syscalls for -e trace=file (#159340).
226 - grok epoll_* syscalls (#134463)
289 - new upstream version, handles yet more 2.5 syscalls, x86_64 & ia64 fixes
327 - aio syscalls for i386/ia64/ppc (Ben LaHaise
    [all...]
strace.c 104 /* Sometimes we want to print only succeeding syscalls. */
191 -O overhead -- set overhead for tracing syscalls to OVERHEAD usecs\n\
200 -z -- print only succeeding syscalls\n\
1145 sysset_t syscalls; local
1271 premptyset(&syscalls);
1273 if (i > (sizeof syscalls) * CHAR_BIT) break;
1274 if (qual_flags [i] & QUAL_TRACE) praddset (&syscalls, i);
1276 praddset (&syscalls, SYS_execve);
1278 praddset (&syscalls, SYS_fork);
1280 praddset (&syscalls, SYS_forkall)
    [all...]
  /external/linux-tools-perf/
builtin-test.c 248 "/sys/kernel/debug/tracing/events/syscalls/%s/id",
444 * This test will generate random numbers of calls to some getpid syscalls,
446 * the syscalls.
451 * Then it checks if the number of syscalls reported as perf events by
452 * the kernel corresponds to the number of syscalls made.
474 pid_t (*syscalls[])(void) = { (void *)getsid, getppid, getpgrp,
553 int foo = syscalls[i]();
  /bionic/libc/
Android.mk 3 include $(LOCAL_PATH)/arch-$(TARGET_ARCH)/syscalls.mk

Completed in 195 milliseconds