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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
syscall.h 1 #include <sys/syscall.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
syscall.h 1 #include <sys/syscall.h>
  /bionic/tests/
sys_syscall_test.cpp 19 #include <sys/syscall.h>
21 TEST(unistd, syscall) {
22 ASSERT_EQ(getpid(), syscall(SYS_getpid));
  /system/core/libbacktrace/
thread_utils.c 21 #include <sys/syscall.h>
25 return syscall(SYS_thread_selfid);
32 #include <sys/syscall.h>
35 return syscall(__NR_gettid);
39 return syscall(__NR_tgkill, tgid, tid, sig);
  /bionic/libc/arch-mips/bionic/
_exit_with_stack_teardown.S 34 syscall
39 syscall
40 // The exit syscall does not return.
  /bionic/libc/arch-mips64/bionic/
_exit_with_stack_teardown.S 34 syscall
39 syscall
40 // The exit syscall does not return.
  /bionic/libc/arch-x86_64/bionic/
_exit_with_stack_teardown.S 34 syscall
39 syscall
40 // The exit syscall does not return.
__rt_sigreturn.S 33 syscall
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sys/
syscall.h 30 we scan the kernel's list and produce <bits/syscall.h> with macros for
32 # include <bits/syscall.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
syscall.h 30 we scan the kernel's list and produce <bits/syscall.h> with macros for
32 # include <bits/syscall.h>
  /bionic/libc/tools/
gensyscalls.py 57 # ARM assembler templates for each syscall stub
94 # Arm64 assembler templates for each syscall stub
111 # MIPS assembler templates for each syscall stub
118 syscall
133 # MIPS64 assembler templates for each syscall stub
140 syscall
161 # x86 assembler templates for each syscall stub
185 # x86_64 assembler templates for each syscall stub
190 syscall
203 """Returns True iff a syscall parameter description correspond
    [all...]
  /external/valgrind/main/memcheck/tests/x86-linux/
scalar_supp.c 3 #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);
  /external/strace/linux/sparc/
gen.pl 7 ($i1, $i2, $i3, $syscall, $syscall_name) = split;
9 $name[$index++] = $syscall;
14 ($i1, $n, $pr, $syscall) = split;
15 $par{$syscall} = $n;
16 $prr{$syscall} = $pr;
22 ($i1, $n, $pr, $syscall) = split;
23 $par{$syscall} = $n;
24 $prr{$syscall} = $pr;
  /external/chromium_org/tools/traceline/traceline/scripts/
scstats.py 16 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/ltrace/sysdeps/linux-gnu/
mksyscallent_mips 35 syscall=1;
38 syscall=0;
40 if (syscall && ($1 ~ /^#define$/) && ($2 ~ /^__NR_/)) {
41 SYSCALL[$4]=substr($2,6);
50 if (!SYSCALL[i]) {
51 SYSCALL[i] = i;
53 pad = 32 - length(SYSCALL[i]);
57 printf("\t\"%s\",%*s/* %d */\n", SYSCALL[i], pad, "", i);
  /external/strace/tests/
uio.test 21 local syscall="$1"; shift
23 LC_ALL=C grep -E -x "$syscall$*" $LOG > /dev/null || {
25 fail_ "$STRACE $args failed to trace \"$syscall\" properly"
  /external/chromium_org/third_party/libevent/
epoll_sub.c 31 #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/
diagnose-termination.d 8 syscall::kill:entry
14 syscall::__pthread_kill:entry
  /external/valgrind/main/coregrind/m_mach/
mach_traps-amd64-darwin.S 41 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/
irt_icache.cc 8 #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/
syscall-counts-report 2 # description: system-wide syscall counts
10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/syscall-counts.py $comm
  /external/strace/linux/
dummy_check.sh 5 grep -q -F -- "${func}(" syscall.h && echo "Defined as macro and as func: $func"
  /system/extras/kexec_tools/
kexec.h 7 #include <sys/syscall.h>
21 return syscall(__NR_kexec_load, entry, nr_segments, segment, flags);
  /bionic/benchmarks/
unistd_benchmark.cpp 19 #include <sys/syscall.h>
37 syscall(__NR_getpid);
62 syscall(__NR_gettid);
  /bionic/libc/bionic/
fork.cpp 30 #include <sys/syscall.h>
45 int result = syscall(__NR_clone, FORK_FLAGS, NULL, NULL, &(self->tid), NULL);
47 int result = syscall(__NR_clone, FORK_FLAGS, NULL, NULL, NULL, &(self->tid));

Completed in 658 milliseconds

1 2 3 4 5 6 7 8 91011>>