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

12345

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/include/
H A Dsyscall.h9 extern int record_syscall_start(int syscall);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/kernel/skas/
H A Dsyscall.c14 #include "syscall.h"
20 int syscall; local
27 /* This should go in the declaration of syscall, but when I do that,
35 syscall = UPT_SYSCALL_NR(r);
36 if((syscall >= NR_syscalls) || (syscall < 0))
38 else result = EXECUTE_SYSCALL(syscall, regs);
H A DMakefile6 obj-y := clone.o exec.o mem.o mmu.o process.o syscall.o tlb.o uaccess.o
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Dseccomp.c34 int * syscall; local
38 syscall = mode1_syscalls;
41 syscall = mode1_syscalls_32;
44 if (*syscall == this_syscall)
46 } while (*++syscall);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/include/sysdep-i386/
H A Dstub.h24 static inline long stub_syscall0(long syscall) argument
28 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall));
33 static inline long stub_syscall1(long syscall, long arg1) argument
37 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1));
42 static inline long stub_syscall2(long syscall, long arg1, long arg2) argument
46 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1),
52 static inline long stub_syscall3(long syscall, long arg1, long arg2, long arg3) argument
56 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1),
62 static inline long stub_syscall4(long syscall, long arg1, long arg2, long arg3, argument
67 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "
73 stub_syscall5(long syscall, long arg1, long arg2, long arg3, long arg4, long arg5) argument
[all...]
H A Dsyscalls.h20 #define EXECUTE_SYSCALL(syscall, regs) \
21 ((long (*)(struct syscall_args)) (*sys_call_table[syscall]))(SYSCALL_ARGS(&regs->regs))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/kernel/tt/
H A Dsyscall_kern.c17 #include "syscall.h"
23 int syscall; local
28 syscall = UPT_SYSCALL_NR(&regs->regs);
34 if((syscall >= NR_syscalls) || (syscall < 0))
36 else result = EXECUTE_SYSCALL(syscall, regs);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/include/sysdep-x86_64/
H A Dstub.h24 #define __syscall "syscall"
26 static inline long stub_syscall0(long syscall) argument
32 : "0" (syscall) : __syscall_clobber );
37 static inline long stub_syscall2(long syscall, long arg1, long arg2) argument
43 : "0" (syscall), "D" (arg1), "S" (arg2) : __syscall_clobber );
48 static inline long stub_syscall3(long syscall, long arg1, long arg2, long arg3) argument
54 : "0" (syscall), "D" (arg1), "S" (arg2), "d" (arg3)
60 static inline long stub_syscall4(long syscall, long arg1, long arg2, long arg3, argument
67 : "0" (syscall), "D" (arg1), "S" (arg2), "d" (arg3),
74 static inline long stub_syscall5(long syscall, lon argument
[all...]
H A Dsyscalls.h18 #define EXECUTE_SYSCALL(syscall, regs) \
20 (*sys_call_table[syscall]))(UPT_SYSCALL_ARG1(&regs->regs), \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dtime.c13 #include <sys/syscall.h>
20 if (syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &ts))
27 if (syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &ts))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/kernel/
H A Dsys32.h25 /* Call a kernel syscall which will use kernel space instead of user
28 #define KERNEL_SYSCALL(ret, syscall, args...) \
32 ret = syscall(args); \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/kernel/
H A Dcompat_audit.c29 int ppc32_classify_syscall(unsigned syscall) argument
31 switch(syscall) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/s390/kernel/
H A Dcompat_audit.c29 int s390_classify_syscall(unsigned syscall) argument
31 switch(syscall) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/kernel/
H A Dcompat_audit.c28 int sparc32_classify_syscall(unsigned syscall) argument
30 switch(syscall) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/os-Linux/sys-i386/
H A Dtls.c4 #include <sys/syscall.h>
22 if (syscall(__NR_get_thread_area, &info) == 0) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/ia32/
H A Daudit.c28 int ia32_classify_syscall(unsigned syscall) argument
30 switch(syscall) {
H A DMakefile18 $(foreach F,sysenter syscall,$(obj)/vsyscall-$F.so)
21 targets := $(foreach F,sysenter syscall,vsyscall-$F.o vsyscall-$F.so)
30 $(obj)/vsyscall-sysenter.so $(obj)/vsyscall-syscall.so: \
32 $(call if_changed,syscall)
35 AFLAGS_vsyscall-syscall.o = -m32 -Wa,-32
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/ia32/
H A Daudit.c28 int ia32_classify_syscall(unsigned syscall) argument
30 switch(syscall) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbwrapper/
H A Drealcalls.h3 defintions of syscall entries
22 #include <sys/syscall.h>
24 #include <syscall.h>
28 /* amazingly, IRIX gets its own syscall numbers wrong! */
39 #define real_access(fn, mode) (syscall(SYS_access, (fn), (mode)))
40 #define real_chdir(fn) (syscall(SYS_chdir, (fn)))
41 #define real_chmod(fn, mode) (syscall(SYS_chmod,(fn), (mode)))
42 #define real_chown(fn, owner, group) (syscall(SYS_chown,(fn),(owner),(group)))
45 #define real_getdents(fd, dirp, count) (syscall(SYS_getdents, (fd), (dirp), (count)))
48 #define real_link(fn1, fn2) (syscall(SYS_lin
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/os-Linux/
H A Dtls.c4 #include <sys/syscall.h>
57 ret = syscall(__NR_set_thread_area,info);
68 ret = syscall(__NR_get_thread_area,info);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/cell/
H A Dspu_callbacks.c54 long (*syscall)(u64 a1, u64 a2, u64 a3, u64 a4, u64 a5, u64 a6);
57 pr_debug("%s: invalid syscall #%ld", __FUNCTION__, s->nr_ret);
61 syscall = spu_syscall_table[s->nr_ret];
64 print_symbol(KERN_DEBUG "SPU-syscall %s:", (unsigned long)syscall);
65 printk("syscall%ld(%lx, %lx, %lx, %lx, %lx, %lx)\n",
71 return syscall(s->parm[0], s->parm[1], s->parm[2],
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/kernel/
H A Dentry-header.S20 @ the addition of 8 bytes for storing syscall args 5 and 6.
54 * These are the registers used in the syscall handler, and allow us to
63 scno .req r7 @ syscall number
64 tbl .req r8 @ syscall table pointer
65 why .req r8 @ Linux syscall (!= 0)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna/linux/
H A Dinotify-syscalls.h4 #include <sys/syscall.h>
64 return syscall (__NR_inotify_init);
69 return syscall (__NR_inotify_add_watch, fd, name, mask);
74 return syscall (__NR_inotify_rm_watch, fd, wd);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.03.14/linux/
H A Dinotify-syscalls.h4 #include <sys/syscall.h>
64 return syscall (__NR_inotify_init);
69 return syscall (__NR_inotify_add_watch, fd, name, mask);
74 return syscall (__NR_inotify_rm_watch, fd, wd);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.07.26/linux/
H A Dinotify-syscalls.h4 #include <sys/syscall.h>
64 return syscall (__NR_inotify_init);
69 return syscall (__NR_inotify_add_watch, fd, name, mask);
74 return syscall (__NR_inotify_rm_watch, fd, wd);

Completed in 137 milliseconds

12345