Home
last modified time | relevance | path

Searched refs:syscalls (Results 1 – 25 of 64) sorted by relevance

123

/freebsd-11-stable/sys/i386/ibcs2/
HDMakefile29 ${BASE_GENERATED}: ${MAKESYSCALLS} syscalls.master syscalls.conf
30 sh ${MAKESYSCALLS} syscalls.master syscalls.conf
32 ${ISC_GENERATED}: ${MAKESYSCALLS} syscalls.isc syscalls.isc.conf
33 sh ${MAKESYSCALLS} syscalls.isc syscalls.isc.conf
35 ${XENIX_GENERATED}: ${MAKESYSCALLS} syscalls.xenix syscalls.xenix.conf
36 sh ${MAKESYSCALLS} syscalls.xenix syscalls.xenix.conf
/freebsd-11-stable/contrib/netbsd-tests/rump/rumpkern/h_client/
HDh_stresscli.c23 static unsigned int syscalls, bindcalls; variable
60 atomic_inc_uint(&syscalls); in client()
63 atomic_inc_uint(&syscalls); in client()
84 atomic_inc_uint(&syscalls); in client()
94 atomic_inc_uint(&syscalls); in client()
104 atomic_inc_uint(&syscalls); in client()
111 atomic_inc_uint(&syscalls); in client()
115 atomic_inc_uint(&syscalls); in client()
117 atomic_inc_uint(&syscalls); in client()
181 fprintf(stderr, "done %d\n", syscalls); in main()
/freebsd-11-stable/sys/compat/svr4/
HDMakefile20 ${GENERATED}: ${MAKESYSCALLS} syscalls.master syscalls.conf
21 sh ${MAKESYSCALLS} syscalls.master syscalls.conf
/freebsd-11-stable/sys/conf/
HDsysent.mk11 syscalls.c \
17 SYSENT_FILE?= syscalls.master
18 SYSENT_CONF?= syscalls.conf
/freebsd-11-stable/tools/tools/shlib-compat/
HDMakefile.sysfake6 sysfake.c: ${.CURDIR}/../../sys/kern/syscalls.master
8 ${.CURDIR}/../../sys/kern/syscalls.master > ${.TARGET}
/freebsd-11-stable/lib/libc/powerpc64/
HDSymbol.map11 /* PSEUDO syscalls */
42 /* PSEUDO syscalls */
/freebsd-11-stable/lib/libc/powerpc/
HDSymbol.map11 /* PSEUDO syscalls */
46 /* PSEUDO syscalls */
/freebsd-11-stable/lib/libc/amd64/
HDSymbol.map11 /* PSEUDO syscalls */
54 /* PSEUDO syscalls */
/freebsd-11-stable/lib/libc/mips/
HDSymbol.map11 /* PSEUDO syscalls */
36 /* PSEUDO syscalls */
/freebsd-11-stable/lib/libc/i386/
HDSymbol.map11 /* PSEUDO syscalls */
51 /* PSEUDO syscalls */
/freebsd-11-stable/lib/libc/arm/
HDSymbol.map11 /* PSEUDO syscalls */
45 /* PSEUDO syscalls */
/freebsd-11-stable/lib/libc/sparc64/
HDSymbol.map11 /* PSEUDO syscalls */
71 /* PSEUDO syscalls */
/freebsd-11-stable/crypto/heimdal/lib/kafs/
HDafsl.exp3 * This mumbo jumbo creates entry points to syscalls in _AIX
/freebsd-11-stable/sys/kern/
HDMakefile9 syscalls.c \
/freebsd-11-stable/tools/tools/shlib-compat/test/libtestsys/
HDMakefile11 sh ${.CURDIR}/../../makesyscalls-fake.sh /usr/src/sys/kern/syscalls.master > ${.TARGET}
/freebsd-11-stable/tools/regression/doat/
HDREADME3 This is a simple testing program for *at family of syscalls. It creates
/freebsd-11-stable/lib/libc/aarch64/
HDSymbol.map11 /* PSEUDO syscalls */
/freebsd-11-stable/lib/libc/riscv/
HDSymbol.map11 /* PSEUDO syscalls */
/freebsd-11-stable/usr.bin/truss/
HDMakefile5 SRCS= main.c setup.c syscalls.c
HDtruss.h65 struct syscall *syscalls[SYSCALL_NORMAL_COUNT]; member
HDsyscalls.c639 static STAILQ_HEAD(, syscall) syscalls;
919 STAILQ_INIT(&syscalls); in init_syscalls()
924 STAILQ_INSERT_HEAD(&syscalls, sc, entries); in init_syscalls()
933 if (number < nitems(abi->syscalls)) in find_syscall()
934 return (abi->syscalls[number]); in find_syscall()
947 if (number < nitems(abi->syscalls)) { in add_syscall()
948 assert(abi->syscalls[number] == NULL); in add_syscall()
949 abi->syscalls[number] = sc; in add_syscall()
980 STAILQ_FOREACH(sc, &syscalls, entries) { in get_syscall()
1005 STAILQ_INSERT_HEAD(&syscalls, sc, entries); in get_syscall()
[all …]
/freebsd-11-stable/contrib/gdb/gdb/
HDprocfs.c894 prsyscall_t *syscalls; in load_syscalls() local
920 syscalls = xmalloc (size); in load_syscalls()
922 if (read (sysent_fd, syscalls, size) != size) in load_syscalls()
924 xfree (syscalls); in load_syscalls()
933 maxcall = syscalls[0].pr_number; in load_syscalls()
936 if (syscalls[i].pr_number > maxcall in load_syscalls()
937 && syscalls[i].pr_nameoff > 0 in load_syscalls()
938 && syscalls[i].pr_number < MAX_SYSCALLS) in load_syscalls()
939 maxcall = syscalls[i].pr_number; in load_syscalls()
954 if (syscalls[i].pr_number >= MAX_SYSCALLS in load_syscalls()
[all …]
/freebsd-11-stable/tools/test/
HDREADME21 ptrace Verify that ptrace works with syscalls, vfork etc.
/freebsd-11-stable/contrib/pjdfstest/
HDpjdfstest.c148 static struct syscall_desc syscalls[] = { variable
435 for (i = 0; syscalls[i].sd_name != NULL; i++) { in find_syscall()
436 if (strcmp(syscalls[i].sd_name, name) == 0) in find_syscall()
437 return (&syscalls[i]); in find_syscall()
/freebsd-11-stable/sys/compat/linux/
HDlinux_errno.inc32 * Linux syscalls return negative errno's, we do positive and map them

123