Lines Matching refs:syscall
40 * Minimal syscall support for LTP testing.
47 * syscall() are also processed. For example, LTP only calls open()
48 * directly and never does a syscall(__NR_open, ...).
52 extern int REAL(syscall)(int, ...);
56 int WRAP(syscall)(int portable_number, ...)
463 ALOGV("%s: Calling syscall(native_number:%d:'sync_file_range', fd:%d, "
469 ret = REAL(syscall)(native_number, fd, align_fill, offset_low, offset_high,
599 * o map the syscall into the equivalent library call:
600 * eg syscall(__NR_gettimeofday_portable, struct timeval *tv, struct timezone *tz) =>
613 ALOGV("%s: Calling syscall(%d, %d, %d, %d, %d, %d, %d, %d, %d);", __func__,
617 ret = REAL(syscall)(native_number, args[0], args[1], args[2], args[3],