/external/linux-tools-perf/scripts/python/ |
D | failed-syscalls-by-pid.py | 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 =…
|
D | syscall-counts-by-pid.py | 31 syscalls = autodict() variable 47 syscalls[common_comm][common_pid][id] += 1 49 syscalls[common_comm][common_pid][id] = 1 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(), \
|
D | sctop.py | 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()
|
D | syscall-counts.py | 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), \
|
/external/linux-tools-perf/scripts/perl/bin/ |
D | rwtop-record | 2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e sys…
|
D | rw-by-pid-record | 2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e sys…
|
D | rw-by-file-record | 2 perf record -e syscalls:sys_enter_read -e syscalls:sys_enter_write $@
|
D | failed-syscalls-report | 10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/failed-syscalls.pl $comm
|
/external/linux-tools-perf/scripts/perl/ |
D | 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
|
D | 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
|
D | rw-by-file.pl | 28 sub syscalls::sys_enter_read subroutine 39 sub syscalls::sys_enter_write subroutine
|
/external/valgrind/main/memcheck/tests/linux/ |
D | Makefile.am | 15 syscalls-2007.vgtest syscalls-2007.stderr.exp \ 28 syscalls-2007 \
|
/external/linux-tools-perf/scripts/python/bin/ |
D | futex-contention-record | 2 perf record -e syscalls:sys_enter_futex -e syscalls:sys_exit_futex $@
|
D | failed-syscalls-by-pid-report | 10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/failed-syscalls-by-pid.py $comm
|
/external/strace/ |
D | NEWS | 10 syscalls using the Linux kernel's explicit facilities for tracing 13 * Implemented decoding of TLS syscalls on m68k. 40 fanotify_init, and fanotify_mark syscalls. 56 * Implemented decoding of new linux syscalls: inotify_init1, recvmmsg. 57 * Implemented basic decoding of new linux syscalls: preadv, pwritev, 59 * Enhanced decoding of recently added syscalls on non-x86 architectures 64 * Enhanced decoding of mbind and mremap syscalls. 78 * Corrected decoding of 64bit syscalls. 100 * Implemented decoding of new Linux syscalls: accept4, dup3, 209 * Support new Linux syscalls mbind, set_mempolicy, get_mempolicy, waitid. [all …]
|
D | strace.spec | 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) 356 - new upstream version. Seems to have integrated most new syscalls 383 - doh, actually apply the 2.4 syscalls patch 388 - add a bunch of new 2.4 syscalls (#14036) 448 - Add patch to follow clone() syscalls, too.
|
D | strace.c | 1148 sysset_t syscalls; in proc_open() local 1274 premptyset(&syscalls); in proc_open() 1276 if (i > (sizeof syscalls) * CHAR_BIT) break; in proc_open() 1277 if (qual_flags [i] & QUAL_TRACE) praddset (&syscalls, i); in proc_open() 1279 praddset (&syscalls, SYS_execve); in proc_open() 1281 praddset (&syscalls, SYS_fork); in proc_open() 1283 praddset (&syscalls, SYS_forkall); in proc_open() 1286 praddset (&syscalls, SYS_fork1); in proc_open() 1289 praddset (&syscalls, SYS_rfork1); in proc_open() 1292 praddset (&syscalls, SYS_rforkall); in proc_open() [all …]
|
D | ChangeLog-CVS | 304 * linux/arm/syscallent.h: Update syscalls. 308 provide syscalls socketcall and ipc. 403 Implement parsers for new linux syscalls. 718 * linux/syscallent.h: Update entries for those syscalls. 765 syscalls. 766 * linux/arm/syscallent.h: Update network syscalls list. 768 syscalls. 1570 Add hooks for new syscalls. Add decoders for *at, inotify*, 1571 pselect6, ppoll and unshare syscalls. 1594 * linux/syscallent.h: Hook up new syscalls. [all …]
|
/external/valgrind/main/docs/internals/ |
D | Darwin-notes.txt | 8 of syscalls rather than the vanilla version, if a _nocancel version 13 read/write/open/close etc syscalls, it really is critical to use the 14 _nocancel versions of syscalls rather than the vanilla versions. This 18 own-purpose (non-client) syscalls should get routed through there. 22 bunch of other syscalls to do with stream I/O are cancellation points. 32 does a syscall, and not the places where Valgrind does syscalls.
|
D | m_syswrap.txt | 7 POST wrappers for syscalls. It is important to observe these, else
|
D | 3_1_BUGSTATUS.txt | 20 v5785 fixed 123248 syscalls in glibc-2.4: openat, fstatat, symlinkat 38 v5849 fixed 125492 ppc32: support a bunch more syscalls 72 v5884 fixed 126938 bad checking for syscalls linkat, renameat, symlinkat
|
D | 3_4_BUGSTATUS.txt | 31 186507 exp-ptrcheck unhandled syscalls prctl, etc.
|
/external/linux-tools-perf/Documentation/ |
D | perf-script-python.txt | 79 - we could enable every event under the tracing/events/syscalls 80 directory, but this is over 600 syscalls, well beyond the number 84 individual syscalls of interest. 86 - we can enable the sys_enter and/or sys_exit syscalls found under 87 tracing/events/raw_syscalls. These are called for all syscalls; the 241 syscalls = autodict() 244 syscalls[id] += 1 246 syscalls[id] = 1 249 The syscalls 'autodict' object is a special kind of Python dictionary 253 levels if they don't exist e.g syscalls[comm][pid][id] = 1 will create [all …]
|
/external/valgrind/main/ |
D | README_MISSING_SYSCALL_OR_IOCTL | 68 PRINT() macro implements support for the --trace-syscalls command line option. 92 (Note: this is sometimes a bug; some syscalls do return results when 141 GEN* for generic syscalls (in syswrap-generic.c), LIN* for linux 148 If you find this difficult, read the wrappers for other syscalls
|
/external/linux-tools-perf/ |
D | builtin-test.c | 474 pid_t (*syscalls[])(void) = { (void *)getsid, getppid, getpgrp, in test__basic_mmap() 553 int foo = syscalls[i](); in test__basic_mmap()
|