Symbol: host_syscall
stand/kboot/include/host_syscall.h
15
long host_syscall(int number, ...);
stand/kboot/libkboot/host_syscalls.c
105
return host_syscall(SYS_mount, src, target, type, flags, data);
stand/kboot/libkboot/host_syscalls.c
111
return host_syscall(SYS_munmap, (uintptr_t)addr, len);
stand/kboot/libkboot/host_syscalls.c
117
return host_syscall(SYS_openat, HOST_AT_FDCWD, (uintptr_t)path, flags, mode);
stand/kboot/libkboot/host_syscalls.c
124
return host_syscall(SYS_read, fd, (uintptr_t)buf, nbyte);
stand/kboot/libkboot/host_syscalls.c
131
return host_syscall(SYS_reboot, magic1, magic2, cmd, arg);
stand/kboot/libkboot/host_syscalls.c
145
return host_syscall(SYS_pselect6, nfds, (uintptr_t)readfds, (uintptr_t)writefds,
stand/kboot/libkboot/host_syscalls.c
152
return host_syscall(SYS_newfstatat, HOST_AT_FDCWD, (uintptr_t)path, (uintptr_t)sb, 0);
stand/kboot/libkboot/host_syscalls.c
158
return host_syscall(SYS_symlinkat, HOST_AT_FDCWD, path1, path2);
stand/kboot/libkboot/host_syscalls.c
164
return host_syscall(SYS_uname, (uintptr_t)uts);
stand/kboot/libkboot/host_syscalls.c
170
return host_syscall(SYS_write, fd, (uintptr_t)buf, nbyte);
stand/kboot/libkboot/host_syscalls.c
19
return host_syscall(SYS_close, fd);
stand/kboot/libkboot/host_syscalls.c
25
return host_syscall(SYS_dup, fd);
stand/kboot/libkboot/host_syscalls.c
31
return host_syscall(SYS_exit, code);
stand/kboot/libkboot/host_syscalls.c
39
return host_syscall(SYS_newfstat, fd, (uintptr_t)sb);
stand/kboot/libkboot/host_syscalls.c
41
return host_syscall(SYS_fstat, fd, (uintptr_t)sb);
stand/kboot/libkboot/host_syscalls.c
48
return host_syscall(SYS_getdents64, fd, (uintptr_t)dirp, count);
stand/kboot/libkboot/host_syscalls.c
54
return host_syscall(SYS_getpid);
stand/kboot/libkboot/host_syscalls.c
60
return host_syscall(SYS_gettimeofday, (uintptr_t)a, (uintptr_t)b);
stand/kboot/libkboot/host_syscalls.c
66
return host_syscall(SYS_ioctl, fd, request, arg);
stand/kboot/libkboot/host_syscalls.c
73
return host_syscall(SYS_llseek, fd, offset_high, offset_lo, (uintptr_t)result, whence);
stand/kboot/libkboot/host_syscalls.c
75
int64_t rv = host_syscall(SYS_lseek, fd,
stand/kboot/libkboot/host_syscalls.c
86
return host_syscall(SYS_kexec_load, entry, nsegs, segs, flags);
stand/kboot/libkboot/host_syscalls.c
92
return host_syscall(SYS_mkdirat, HOST_AT_FDCWD, (uintptr_t)path, mode);
stand/kboot/libkboot/host_syscalls.c
98
return (void *)host_syscall(SYS_mmap, (uintptr_t)addr, len, prot, flags, fd, off);