/bionic/tests/ |
sys_syscall_test.cpp | 19 #include <sys/syscall.h> 21 TEST(unistd, syscall) { 22 ASSERT_EQ(getpid(), syscall(SYS_getpid));
|
/bionic/libc/arch-mips/bionic/ |
_exit_with_stack_teardown.S | 34 syscall 39 syscall 40 // The exit syscall does not return.
|
syscall.S | 33 * syscall has up to 6 arguments, so we need space for the extra two arguments. 37 ENTRY(syscall) function 50 syscall 61 END(syscall)
|
/bionic/libc/arch-mips64/bionic/ |
_exit_with_stack_teardown.S | 34 syscall 39 syscall 40 // The exit syscall does not return.
|
syscall.S | 38 LEAF(syscall,FRAMESZ) 40 SETUP_GP64(FRAME_GP,syscall) 42 move v0, a0 # syscall number to v0 57 syscall 68 END(syscall)
|
/bionic/libc/arch-x86_64/bionic/ |
_exit_with_stack_teardown.S | 34 syscall 39 syscall 40 // The exit syscall does not return.
|
syscall.S | 30 * Generic syscall call. 36 * %rcx: arg3 - syscall expects it at %r10 43 ENTRY(syscall) function 45 # (Not all will be valid, depending on the syscall.) 55 syscall 63 END(syscall)
|
/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/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/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/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
|
syscall-counts-by-pid-report | 2 # description: system-wide syscall counts, by pid 10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/syscall-counts-by-pid.py $comm
|
/bionic/benchmarks/ |
unistd_benchmark.cpp | 19 #include <sys/syscall.h> 37 syscall(__NR_getpid); 62 syscall(__NR_gettid);
|
time_benchmark.cpp | 19 #include <sys/syscall.h> 39 syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &t); 63 syscall(__NR_gettimeofday, &tv, NULL);
|
/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));
|
/bionic/libc/include/sys/ |
syscall.h | 40 long syscall(long number, ...);
|
/development/ndk/platforms/android-3/include/sys/ |
syscall.h | 38 int syscall(int number, ...);
|
/development/ndk/platforms/android-L/include/sys/ |
syscall.h | 40 int syscall(int number, ...);
|
/external/chromium_org/tools/traceline/traceline/ |
dump_syscalls_idarub.rb | 26 syscall = ida.get_long(curea - 4) 29 puts '%d: "%s!%s",' % [syscall, filename, funcname]
|
/bionic/libc/arch-arm64/bionic/ |
syscall.S | 31 ENTRY(syscall) function 32 /* Move syscall No. from x0 to x8 */ 34 /* Move syscall parameters from x1 thru x6 to x0 thru x5 */ 43 /* check if syscall returned successfully */ 49 END(syscall)
|
/external/chromium_org/third_party/libusb/src/libusb/os/ |
threads_posix.c | 24 # include <sys/syscall.h> 64 ret = syscall(SYS_gettid); 68 ret = syscall(SYS_getthrid);
|
/external/chromium_org/v8/src/mips/ |
cpu-mips.cc | 7 #include <sys/syscall.h> 42 res = syscall(__NR_cacheflush, start, size, ICACHE);
|