Searched refs:syscall (Results 101 - 125 of 284) sorted by relevance

1234567891011>>

/seL4-camkes-master/projects/musllibc/src/stat/
H A Dstat.c3 #include "syscall.h"
9 return syscall(SYS_stat, path, buf);
11 return syscall(SYS_fstatat, AT_FDCWD, path, buf, 0);
H A Dfstatat.c2 #include "syscall.h"
7 return syscall(SYS_fstatat, fd, path, buf, flag);
H A Dmknodat.c2 #include "syscall.h"
6 return syscall(SYS_mknodat, fd, path, mode, dev);
/seL4-camkes-master/projects/musllibc/src/stdio/
H A D__stdio_seek.c7 if (syscall(SYS__llseek, f->fd, off>>32, off, &ret, whence)<0)
10 ret = syscall(SYS_lseek, f->fd, off, whence);
/seL4-camkes-master/projects/musllibc/src/unistd/
H A Dchown.c3 #include "syscall.h"
8 return syscall(SYS_chown, path, uid, gid);
10 return syscall(SYS_fchownat, AT_FDCWD, path, uid, gid, 0);
H A Dlchown.c3 #include "syscall.h"
8 return syscall(SYS_lchown, path, uid, gid);
10 return syscall(SYS_fchownat, AT_FDCWD, path, uid, gid, AT_SYMLINK_NOFOLLOW);
H A Dlseek.c2 #include "syscall.h"
9 return syscall(SYS__llseek, fd, offset>>32, offset, &result, whence) ? -1 : result;
11 return syscall(SYS_lseek, fd, offset, whence);
H A Dreadlink.c3 #include "syscall.h"
8 return syscall(SYS_readlink, path, buf, bufsize);
10 return syscall(SYS_readlinkat, AT_FDCWD, path, buf, bufsize);
H A Dfchownat.c2 #include "syscall.h"
6 return syscall(SYS_fchownat, fd, path, uid, gid, flag);
H A Dlinkat.c2 #include "syscall.h"
6 return syscall(SYS_linkat, fd1, existing, fd2, new, flag);
/seL4-camkes-master/projects/musllibc/src/dirent/
H A D__getdents.c2 #include "syscall.h"
7 return syscall(SYS_getdents, fd, buf, len);
/seL4-camkes-master/projects/musllibc/src/linux/
H A Dreadahead.c3 #include "syscall.h"
7 return syscall(SYS_readahead, fd, __SYSCALL_LL_O(pos), len);
H A Dremap_file_pages.c3 #include "syscall.h"
7 return syscall(SYS_remap_file_pages, addr, size, prot, pgoff, flags);
H A Dsendfile.c2 #include "syscall.h"
7 return syscall(SYS_sendfile, out_fd, in_fd, ofs, count);
H A Dtee.c3 #include "syscall.h"
7 return syscall(SYS_tee, src, dest, len, flags);
H A Dvmsplice.c3 #include "syscall.h"
7 return syscall(SYS_vmsplice, fd, iov, cnt, flags);
/seL4-camkes-master/projects/musllibc/src/misc/
H A Dgetpriority.c2 #include "syscall.h"
6 int ret = syscall(SYS_getpriority, which, who);
H A Dgetresgid.c3 #include "syscall.h"
7 return syscall(SYS_getresgid, rgid, egid, sgid);
H A Dgetresuid.c3 #include "syscall.h"
7 return syscall(SYS_getresuid, ruid, euid, suid);
/seL4-camkes-master/projects/musllibc/src/mman/
H A Dmadvise.c2 #include "syscall.h"
7 return syscall(SYS_madvise, addr, len, advice);
H A Dmunmap.c2 #include "syscall.h"
11 return syscall(SYS_munmap, start, len);
/seL4-camkes-master/projects/musllibc/src/signal/mips64/
H A Drestore.s9 syscall
/seL4-camkes-master/projects/musllibc/src/signal/mipsn32/
H A Drestore.s9 syscall
/seL4-camkes-master/projects/musllibc/src/thread/x32/
H A D__set_thread_area.s6 mov %edi,%esi /* shift for syscall */
9 syscall /* arch_prctl(SET_FS, arg)*/
/seL4-camkes-master/projects/musllibc/src/thread/x86_64/
H A D__set_thread_area.s6 mov %rdi,%rsi /* shift for syscall */
9 syscall /* arch_prctl(SET_FS, arg)*/

Completed in 70 milliseconds

1234567891011>>