| /openbmc/qemu/bsd-user/ |
| H A D | strace.c | 54 abi_long arg2, abi_long arg3, abi_long arg4, abi_long arg5, in print_sysctl() argument 72 (uint32_t)arg2, arg3, arg4, arg5, arg6); in print_sysctl() 76 abi_long arg2, abi_long arg3, abi_long arg4, abi_long arg5, in print_execve() argument 111 abi_long arg5, abi_long arg6) in print_ioctl() argument 129 abi_long arg2, abi_long arg3, abi_long arg4, abi_long arg5, in print_sysarch() argument 133 do_os_print_sysarch(name, arg1, arg2, arg3, arg4, arg5, arg6); in print_sysarch() 165 abi_long arg4, abi_long arg5, abi_long arg6) in print_syscall() argument 177 scnames[i].call(&scnames[i], arg1, arg2, arg3, arg4, arg5, in print_syscall() 185 gemu_log(format, scnames[i].name, arg1, arg2, arg3, arg4, arg5, in print_syscall() 220 abi_long arg4, abi_long arg5, abi_long arg6) in print_freebsd_syscall() argument [all …]
|
| H A D | bsd-file.h | 88 abi_long arg2, abi_long arg3, abi_long arg4, abi_long arg5, abi_long arg6) in do_bsd_pread() argument 98 arg4 = arg5; in do_bsd_pread() 99 arg5 = arg6; in do_bsd_pread() 101 ret = get_errno(safe_pread(arg1, p, arg3, target_arg64(arg4, arg5))); in do_bsd_pread() 125 abi_long arg2, abi_long arg3, abi_long arg4, abi_long arg5, abi_long arg6) in do_bsd_preadv() argument 132 arg4 = arg5; in do_bsd_preadv() 133 arg5 = arg6; in do_bsd_preadv() 135 ret = get_errno(safe_preadv(arg1, vec, arg3, target_arg64(arg4, arg5))); in do_bsd_preadv() 167 abi_long arg2, abi_long arg3, abi_long arg4, abi_long arg5, abi_long arg6) in do_bsd_pwrite() argument 177 arg4 = arg5; in do_bsd_pwrite() [all …]
|
| H A D | syscall_defs.h | 506 type4, arg4, type5, arg5) \ argument 508 type5 arg5) \ 510 return safe_syscall(SYS_##name, arg1, arg2, arg3, arg4, arg5); \ 514 type4, arg4, type5, arg5, type6, arg6) \ argument 516 type5 arg5, type6 arg6) \ 518 return safe_syscall(SYS_##name, arg1, arg2, arg3, arg4, arg5, arg6); \
|
| H A D | qemu.h | 180 abi_long arg5, abi_long arg6, abi_long arg7, 184 abi_long arg5, abi_long arg6); 187 abi_long arg5, abi_long arg6); 211 abi_long arg4, abi_long arg5, abi_long arg6); 216 abi_long arg4, abi_long arg5, abi_long arg6); 221 abi_long arg4, abi_long arg5, abi_long arg6); 257 abi_ulong arg3, abi_ulong arg4, abi_ulong arg5, abi_ulong arg6);
|
| /openbmc/qemu/linux-user/ |
| H A D | strace.c | 656 abi_long arg4, abi_long arg5, abi_long arg6) in print_newselect() argument 665 print_timeval(arg5, 1); in print_newselect() 673 abi_long arg4, abi_long arg5, abi_long arg6) in print_semctl() argument 684 abi_long arg3, abi_long arg4, abi_long arg5) in print_shmat() argument 705 abi_long arg4, abi_long arg5, abi_long arg6) in print_ipc() argument 710 arg2, arg3, arg4, arg5, 0, 0); in print_ipc() 714 arg2, arg5, arg3, 0, 0, 0); in print_ipc() 797 abi_long arg5) in print_syscall_ret_addr() argument 818 abi_long arg5) in print_syscall_ret_newselect() argument 848 abi_long arg5) in print_syscall_ret_adjtimex() argument [all …]
|
| H A D | strace.h | 23 abi_long arg4, abi_long arg5, abi_long arg6); 26 abi_long arg4, abi_long arg5, abi_long arg6);
|
| H A D | syscall.c | 271 type5,arg5) \ argument 272 static type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5) \ 274 return syscall(__NR_##name, arg1, arg2, arg3, arg4, arg5); \ 279 type5,arg5,type6,arg6) \ argument 280 static type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5, \ 283 return syscall(__NR_##name, arg1, arg2, arg3, arg4, arg5, arg6); \ 684 type4, arg4, type5, arg5) \ argument 686 type5 arg5) \ 688 return safe_syscall(__NR_##name, arg1, arg2, arg3, arg4, arg5); \ 692 type4, arg4, type5, arg5, type6, arg6) \ argument [all …]
|
| H A D | user-internals.h | 65 abi_long arg5, abi_long arg6, abi_long arg7,
|
| /openbmc/qemu/bsd-user/freebsd/ |
| H A D | os-syscall.c | 219 abi_long arg5, abi_long arg6, abi_long arg7, in freebsd_syscall() argument 258 arg4, arg5, arg6, arg7, arg8); in freebsd_syscall() 426 ret = do_freebsd_procctl(cpu_env, arg1, arg2, arg3, arg4, arg5, arg6); in freebsd_syscall() 437 ret = do_bsd_pread(cpu_env, arg1, arg2, arg3, arg4, arg5, arg6); in freebsd_syscall() 445 ret = do_bsd_preadv(cpu_env, arg1, arg2, arg3, arg4, arg5, arg6); in freebsd_syscall() 453 ret = do_bsd_pwrite(cpu_env, arg1, arg2, arg3, arg4, arg5, arg6); in freebsd_syscall() 461 ret = do_bsd_pwritev(cpu_env, arg1, arg2, arg3, arg4, arg5, arg6); in freebsd_syscall() 525 ret = do_bsd_linkat(arg1, arg2, arg3, arg4, arg5); in freebsd_syscall() 629 ret = do_bsd_mknodat(cpu_env, arg1, arg2, arg3, arg4, arg5, arg6); in freebsd_syscall() 645 ret = do_bsd_fchownat(arg1, arg2, arg3, arg4, arg5); in freebsd_syscall() [all …]
|
| H A D | os-strace.h | 25 abi_long arg5, abi_long arg6) in do_os_print_sysarch() argument 28 do_freebsd_arch_print_sysarch(name, arg1, arg2, arg3, arg4, arg5, arg6); in do_os_print_sysarch()
|
| H A D | os-proc.c | 253 abi_ulong arg4, abi_ulong arg5, abi_ulong arg6) in do_freebsd_procctl() argument 273 target_cmd = (int)arg5; in do_freebsd_procctl() 278 target_arg = arg5; in do_freebsd_procctl()
|
| H A D | os-stat.h | 643 abi_long arg3, abi_long arg4, abi_long arg5) in do_freebsd_realpathat() argument 655 ret = get_errno(__realpathat(arg1, p, b, arg4, arg5)); in do_freebsd_realpathat()
|
| /openbmc/qemu/include/user/ |
| H A D | syscall-trace.h | 27 abi_long arg5, abi_long arg6, in record_syscall_start() argument 32 arg5, arg6, arg7, arg8); in record_syscall_start()
|
| /openbmc/qemu/tests/tcg/arm/ |
| H A D | hello-arm.c | 88 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5) \ argument 89 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5) { \ 101 "r" ((long)(arg5)) \
|
| /openbmc/qemu/bsd-user/aarch64/ |
| H A D | target_arch_sysarch.h | 38 abi_long arg3, abi_long arg4, abi_long arg5, abi_long arg6) in do_freebsd_arch_print_sysarch() argument
|
| /openbmc/qemu/bsd-user/riscv/ |
| H A D | target_arch_sysarch.h | 35 abi_long arg3, abi_long arg4, abi_long arg5, abi_long arg6) in do_freebsd_arch_print_sysarch() argument
|
| /openbmc/qemu/bsd-user/arm/ |
| H A D | target_arch_sysarch.h | 53 abi_long arg3, abi_long arg4, abi_long arg5, abi_long arg6) in do_freebsd_arch_print_sysarch() argument
|
| /openbmc/qemu/bsd-user/i386/ |
| H A D | target_arch_sysarch.h | 70 abi_long arg3, abi_long arg4, abi_long arg5, abi_long arg6) in do_freebsd_arch_print_sysarch() argument
|
| /openbmc/qemu/bsd-user/x86_64/ |
| H A D | target_arch_sysarch.h | 69 abi_long arg3, abi_long arg4, abi_long arg5, abi_long arg6) in do_freebsd_arch_print_sysarch() argument
|
| /openbmc/u-boot/include/ |
| H A D | atf_common.h | 81 unsigned long arg5; member
|
| /openbmc/qemu/target/i386/ |
| H A D | cpu-system.c | 285 panic_info->u.hyper_v.arg5 = env->msr_hv_crash_params[4]; in x86_cpu_get_crash_info()
|
| /openbmc/openbmc/poky/meta/recipes-extended/libaio/libaio/ |
| H A D | 00_arches.patch | 479 +#define io_syscall5(type,fname,sname,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5) \ 480 +type fname(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5) \ 482 + return K_INLINE_SYSCALL(sname, 5, arg1, arg2, arg3, arg4, arg5); \
|