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

1234567891011>>

/bionic/tests/
H A Dsys_syscall_test.cpp19 #include <sys/syscall.h>
21 TEST(unistd, syscall) {
22 ASSERT_EQ(getpid(), syscall(SYS_getpid));
/bionic/libc/tools/
H A Dgensyscalls.py57 # 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 paramete
[all...]
/bionic/libc/arch-mips/bionic/
H A D_exit_with_stack_teardown.S34 syscall
39 syscall
40 // The exit syscall does not return.
H A Dsyscall.S33 * 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/
H A D_exit_with_stack_teardown.S34 syscall
39 syscall
40 // The exit syscall does not return.
H A Dsyscall.S38 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/
H A D_exit_with_stack_teardown.S34 syscall
39 syscall
40 // The exit syscall does not return.
H A D__rt_sigreturn.S33 syscall
H A Dsyscall.S30 * 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/benchmarks/
H A Dunistd_benchmark.cpp19 #include <sys/syscall.h>
37 syscall(__NR_getpid);
62 syscall(__NR_gettid);
H A Dtime_benchmark.cpp19 #include <sys/syscall.h>
39 syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &t);
63 syscall(__NR_gettimeofday, &tv, NULL);
/bionic/libc/bionic/
H A Dfork.cpp30 #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/
H A Dsyscall.h40 long syscall(long number, ...);
/bionic/libc/arch-arm64/bionic/
H A Dsyscall.S31 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)
/bionic/libc/arch-mips/syscalls/
H A D__accept4.S9 syscall
H A D__brk.S9 syscall
H A D__connect.S9 syscall
H A D__epoll_pwait.S9 syscall
H A D__exit.S9 syscall
H A D__fadvise64.S9 syscall
H A D__fcntl64.S9 syscall
H A D__fstatfs64.S9 syscall
H A D__getcpu.S9 syscall
H A D__getcwd.S9 syscall
H A D__getdents64.S9 syscall

Completed in 262 milliseconds

1234567891011>>