Searched refs:syscall (Results 1 - 25 of 225) sorted by relevance

123456789

/external/chromium_org/tools/traceline/traceline/scripts/
H A Dscstats.py16 syscall = e['syscall']
19 calls[syscall] = calls.get(syscall, 0) + delta
21 delta, ms, tid, syscall, syscalls.get(syscall, 'unknown'))
23 #for syscall, delta in calls.items():
24 # print '%f - %d %s' % (delta, syscall, syscalls.get(syscall, 'unknown'))
/external/valgrind/main/memcheck/tests/x86-linux/
H A Dscalar_supp.c3 #include <sys/syscall.h>
14 // - the syscall number itself is undefined (but we know it's
18 syscall(pi[0]+__NR_write, pi[0], pc[0], pi[0]+1);
H A Dscalar.h8 #include <sys/syscall.h>
16 extern long int syscall (long int __sysno, ...) __THROW;
18 // Thorough syscall scalar arg checking. Also serves as thorough checking
19 // for (very) basic syscall use. Generally not trying to do anything
28 #define SY res = syscall
/external/ltrace/sysdeps/linux-gnu/
H A Dmksyscallent_mips35 syscall=1;
38 syscall=0;
40 if (syscall && ($1 ~ /^#define$/) && ($2 ~ /^__NR_/)) {
/external/strace/tests/
H A Duio.test21 local syscall="$1"; shift
23 LC_ALL=C grep -E -x "$syscall$*" $LOG > /dev/null || {
25 fail_ "$STRACE $args failed to trace \"$syscall\" properly"
H A Dscm_rights-fd.test31 local syscall="$1"; shift
34 LC_ALL=C grep -E -x "$prefix$syscall$*" $LOG > /dev/null || {
36 fail_ "$STRACE $args failed to trace \"$syscall\" properly"
H A Dnet-fd.test33 local syscall="$1"; shift
36 LC_ALL=C grep -E -x "$prefix$syscall$@" $LOG > /dev/null || {
38 fail_ "strace -enetwork failed to trace \"$syscall\" properly"
H A Dnet.test28 local syscall="$1"; shift
31 LC_ALL=C grep -E -x "$prefix$syscall$@" $LOG > /dev/null || {
33 fail_ "strace -enetwork failed to trace \"$syscall\" properly"
/external/chromium_org/third_party/libevent/
H A Depoll_sub.c31 #include <sys/syscall.h>
38 return (syscall(__NR_epoll_create, size));
45 return (syscall(__NR_epoll_ctl, epfd, op, fd, event));
51 return (syscall(__NR_epoll_wait, epfd, events, maxevents, timeout));
/external/lldb/tools/debugserver/scripts/
H A Ddiagnose-termination.d8 syscall::kill:entry
14 syscall::__pthread_kill:entry
/external/valgrind/main/coregrind/m_mach/
H A Dmach_traps-amd64-darwin.S41 syscall
52 // syscall
62 syscall
72 syscall
82 syscall
92 syscall
102 syscall
112 syscall
122 syscall
132 syscall
[all...]
/external/chromium_org/components/nacl/loader/nonsfi/
H A Dirt_icache.cc8 #include <sys/syscall.h>
18 // TODO(mazda): Revisit the implementation to consider inlining the syscall
24 int result = syscall(__ARM_NR_cacheflush,
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/bin/
H A Dsyscall-counts-report2 # description: system-wide syscall counts
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/syscall-counts.py $comm
H A Dsyscall-counts-by-pid-report2 # description: system-wide syscall counts, by pid
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/syscall-counts-by-pid.py $comm
/external/strace/linux/
H A Ddummy_check.sh5 grep -q -F -- "${func}(" syscall.h && echo "Defined as macro and as func: $func"
/external/chromium_org/tools/traceline/traceline/
H A Ddump_syscalls_idarub.rb26 syscall = ida.get_long(curea - 4)
29 puts '%d: "%s!%s",' % [syscall, filename, funcname]
/external/valgrind/main/gdbserver_tests/
H A Dnlcontrolc.stdoutB.exp3 0x........ in syscall ...
7 4 Thread .... (tid 4 VgTs_WaitSys) 0x........ in syscall ...
8 3 Thread .... (tid 3 VgTs_WaitSys) 0x........ in syscall ...
9 2 Thread .... (tid 2 VgTs_WaitSys) 0x........ in syscall ...
10 * 1 Thread .... (tid 1 VgTs_WaitSys) 0x........ in syscall ...
H A Dnlvgdbsigqueue.stdoutB.exp4 0x........ in syscall ...
11 0x........ in syscall ...
15 0x........ in syscall ...
H A Dnlgone_abrt.stdoutB.exp3 0x........ in syscall ...
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dthreads_posix.c24 # include <sys/syscall.h>
64 ret = syscall(SYS_gettid);
68 ret = syscall(SYS_getthrid);
/external/chromium_org/v8/src/mips/
H A Dcpu-mips.cc7 #include <sys/syscall.h>
42 res = syscall(__NR_cacheflush, start, size, ICACHE);
/external/chromium_org/v8/src/mips64/
H A Dcpu-mips64.cc7 #include <sys/syscall.h>
42 res = syscall(__NR_cacheflush, start, size, ICACHE);
/external/strace/test/
H A Dx32_lseek.c1 // Test program which explores whether lseek syscall (not llseek!)
18 #include <sys/syscall.h>
28 long r = syscall(
/external/valgrind/main/exp-bbv/tests/amd64-linux/
H A Dmillion.S20 mov $60,%rax # put exit syscall number (60) in rax
21 syscall
/external/valgrind/main/memcheck/tests/linux/
H A Dcapget.c5 #include <unistd.h> /* syscall() */
6 #include <sys/syscall.h> /* __NR_capget */
21 syscall_result = syscall(__NR_capget, &h, &d);

Completed in 415 milliseconds

123456789