Home
last modified time | relevance | path

Searched refs:path_or_fd (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/bsd-user/freebsd/
H A Dos-proc.h40 static inline abi_long do_freebsd_execve(abi_ulong path_or_fd, abi_ulong argp, in do_freebsd_execve() argument
44 return freebsd_exec_common(path_or_fd, argp, envp, 0); in do_freebsd_execve()
48 static inline abi_long do_freebsd_fexecve(abi_ulong path_or_fd, abi_ulong argp, in do_freebsd_fexecve() argument
52 return freebsd_exec_common(path_or_fd, argp, envp, 1); in do_freebsd_fexecve()
H A Dos-proc.c32 abi_long freebsd_exec_common(abi_ulong path_or_fd, abi_ulong guest_argp, in freebsd_exec_common() argument
114 ret = get_errno(fexecve((int)path_or_fd, argp, envp)); in freebsd_exec_common()
116 p = lock_user_string(path_or_fd); in freebsd_exec_common()
122 unlock_user(p, path_or_fd, 0); in freebsd_exec_common()
/openbmc/qemu/bsd-user/
H A Dqemu.h265 abi_long freebsd_exec_common(abi_ulong path_or_fd, abi_ulong guest_argp,