Home
last modified time | relevance | path

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

/qemu/bsd-user/freebsd/
H A Dos-proc.c84 abi_long freebsd_exec_common(abi_ulong path_or_fd, abi_ulong guest_argp, in freebsd_exec_common() argument
169 if (((int)path_or_fd > 0 && in freebsd_exec_common()
170 is_target_elf_binary((int)path_or_fd)) == 1) { in freebsd_exec_common()
178 if (get_filename_from_fd(getpid(), (int)path_or_fd, execpath, in freebsd_exec_common()
198 ret = get_errno(fexecve((int)path_or_fd, argp, envp)); in freebsd_exec_common()
203 p = lock_user_string(path_or_fd); in freebsd_exec_common()
234 unlock_user(p, path_or_fd, 0); in freebsd_exec_common()
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()
/qemu/bsd-user/
H A Dqemu.h262 abi_long freebsd_exec_common(abi_ulong path_or_fd, abi_ulong guest_argp,