Home
last modified time | relevance | path

Searched refs:syscalls (Results 1 – 25 of 85) sorted by relevance

1234

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
Dlibrary.dsc68 "syscalls/access.c",
69 "syscalls/cfgetispeed.c",
70 "syscalls/cfgetospeed.c",
71 "syscalls/cfsetispeed.c",
72 "syscalls/cfsetospeed.c",
73 "syscalls/cfsetspeed.c",
74 "syscalls/chown.c",
75 "syscalls/fchown.c",
76 "syscalls/fcntl.c",
77 "syscalls/ftruncate.c",
[all …]
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/
Dfailed-syscalls-by-pid.py32 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 =…
Dsyscall-counts-by-pid.py31 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(), \
Dsctop.py39 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()
Dsyscall-counts.py28 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/perf-3.12.0/tools/perf/scripts/perl/bin/
Drwtop-record2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e sys…
Drw-by-pid-record2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e sys…
Drw-by-file-record2 perf record -e syscalls:sys_enter_read -e syscalls:sys_enter_write $@
Dfailed-syscalls-report10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/failed-syscalls.pl $comm
/external/chromium_org/tools/traceline/traceline/scripts/
Dscstats.py8 from syscalls import syscalls
21 delta, ms, tid, syscall, syscalls.get(syscall, 'unknown'))
Dalloc.py8 from syscalls import syscalls
Dcrit_sec.py9 from syscalls import syscalls
Dsyscalls.py5 syscalls = { variable
/external/strace/
DNEWS18 * Robustified decoding of select, pselect, and io_submit syscalls.
20 setns, and sync_file_range syscalls.
29 * Added shmat and shmdt to the set of memory mapping related syscalls.
32 * Fixed offset decoding in preadv and pwritev syscalls.
52 * Added -e trace=memory option for tracing memory mapping related syscalls.
61 quotactl syscalls.
75 * Fixed decoding of *xattr syscalls
82 and truncate64 syscalls.
83 * Fixed categories of multiple syscalls on most of supported architectures.
84 * Fixed decoding of non-native 32-bit personality recv[m]msg syscalls.
[all …]
Dstrace.spec207 - 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_64 & ia64 fixes
348 - aio syscalls for i386/ia64/ppc (Ben LaHaise)
377 - new upstream version. Seems to have integrated most new syscalls
404 - doh, actually apply the 2.4 syscalls patch
409 - add a bunch of new 2.4 syscalls (#14036)
469 - Add patch to follow clone() syscalls, too.
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/
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
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
Drw-by-file.pl28 sub syscalls::sys_enter_read subroutine
39 sub syscalls::sys_enter_write subroutine
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/bin/
Dfutex-contention-record2 perf record -e syscalls:sys_enter_futex -e syscalls:sys_exit_futex $@
Dfailed-syscalls-by-pid-report10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/failed-syscalls-by-pid.py $comm
/external/valgrind/main/memcheck/tests/linux/
DMakefile.am16 syscalls-2007.vgtest syscalls-2007.stderr.exp \
34 syscalls-2007 \
Dsyscalls-2007.vgtest1 prog: syscalls-2007
/external/linux-tools-perf/perf-3.12.0/tools/perf/
Dbuiltin-trace.c428 } syscalls; member
556 if (id > trace->syscalls.max) { in trace__read_syscall_info()
557 struct syscall *nsyscalls = realloc(trace->syscalls.table, (id + 1) * sizeof(*sc)); in trace__read_syscall_info()
562 if (trace->syscalls.max != -1) { in trace__read_syscall_info()
563 memset(nsyscalls + trace->syscalls.max + 1, 0, in trace__read_syscall_info()
564 (id - trace->syscalls.max) * sizeof(*sc)); in trace__read_syscall_info()
569 trace->syscalls.table = nsyscalls; in trace__read_syscall_info()
570 trace->syscalls.max = id; in trace__read_syscall_info()
573 sc = trace->syscalls.table + id; in trace__read_syscall_info()
672 if ((id > trace->syscalls.max || trace->syscalls.table[id].name == NULL) && in trace__syscall_info()
[all …]
/external/valgrind/main/docs/internals/
DDarwin-notes.txt8 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.
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
Dmmap-basic.c28 pid_t (*syscalls[])(void) = { (void *)getsid, getppid, getpgrp, in test__basic_mmap() local
98 int foo = syscalls[i](); in test__basic_mmap()

1234