| /openbmc/qemu/bsd-user/freebsd/ |
| H A D | os-syscall.c | 218 abi_long arg2, abi_long arg3, abi_long arg4, in freebsd_syscall() argument 245 ret = do_freebsd_execve(arg1, arg2, arg3); in freebsd_syscall() 249 ret = do_freebsd_fexecve(arg1, arg2, arg3); in freebsd_syscall() 253 ret = do_freebsd_wait4(arg1, arg2, arg3, arg4); in freebsd_syscall() 257 ret = do_freebsd_wait6(cpu_env, arg1, arg2, arg3, in freebsd_syscall() 358 ret = do_bsd_getresuid(arg1, arg2, arg3); in freebsd_syscall() 362 ret = do_bsd_getresgid(arg1, arg2, arg3); in freebsd_syscall() 366 ret = do_bsd_setresuid(arg1, arg2, arg3); in freebsd_syscall() 370 ret = do_bsd_setresgid(arg1, arg2, arg3); in freebsd_syscall() 386 ret = do_bsd_profil(arg1, arg2, arg3, arg4); in freebsd_syscall() [all …]
|
| H A D | os-stat.h | 117 abi_long arg3, abi_long arg4) in do_freebsd11_fstatat() argument 126 if (!is_error(ret) && arg3) { in do_freebsd11_fstatat() 127 ret = h2t_freebsd11_stat(arg3, &st); in do_freebsd11_fstatat() 134 abi_long arg3, abi_long arg4) in do_freebsd_fstatat() argument 143 if (!is_error(ret) && arg3) { in do_freebsd_fstatat() 144 ret = h2t_freebsd_stat(arg3, &st); in do_freebsd_fstatat() 565 abi_ulong arg3) in do_freebsd_fcntl() argument 578 if (!lock_user_struct(VERIFY_READ, target_fl, arg3, 1)) { in do_freebsd_fcntl() 587 unlock_user_struct(target_fl, arg3, 0); in do_freebsd_fcntl() 590 if (!lock_user_struct(VERIFY_WRITE, target_fl, arg3, 0)) { in do_freebsd_fcntl() [all …]
|
| H A D | os-strace.h | 24 abi_long arg1, abi_long arg2, abi_long arg3, abi_long arg4, 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 | 252 do_freebsd_procctl(void *cpu_env, int idtype, abi_ulong arg2, abi_ulong arg3, in do_freebsd_procctl() argument 272 id = (id_t)target_arg64(arg3, arg4); in do_freebsd_procctl() 276 id = (id_t)target_arg64(arg2, arg3); in do_freebsd_procctl() 282 target_cmd = (int)arg3; in do_freebsd_procctl()
|
| H A D | os-proc.h | 57 abi_long arg3, abi_ulong target_rusage) in do_freebsd_wait4() argument 66 ret = get_errno(safe_wait4(arg1, &status, arg3, rusage_ptr)); in do_freebsd_wait4()
|
| /openbmc/qemu/bsd-user/ |
| H A D | bsd-file.h | 71 static abi_long do_bsd_read(abi_long arg1, abi_long arg2, abi_long arg3) in do_bsd_read() argument 76 p = lock_user(VERIFY_WRITE, arg2, arg3, 0); in do_bsd_read() 80 ret = get_errno(safe_read(arg1, p, arg3)); in do_bsd_read() 88 abi_long arg2, abi_long arg3, abi_long arg4, abi_long arg5, abi_long arg6) in do_bsd_pread() argument 93 p = lock_user(VERIFY_WRITE, arg2, arg3, 0); in do_bsd_pread() 101 ret = get_errno(safe_pread(arg1, p, arg3, target_arg64(arg4, arg5))); in do_bsd_pread() 108 static abi_long do_bsd_readv(abi_long arg1, abi_long arg2, abi_long arg3) in do_bsd_readv() argument 111 struct iovec *vec = lock_iovec(VERIFY_WRITE, arg2, arg3, 0); in do_bsd_readv() 114 ret = get_errno(safe_readv(arg1, vec, arg3)); in do_bsd_readv() 115 unlock_iovec(vec, arg2, arg3, 1); in do_bsd_readv() [all …]
|
| 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 110 abi_long arg1, abi_long arg2, abi_long arg3, abi_long arg4, in print_ioctl() argument 125 arg3); in print_ioctl() 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() 164 unsigned int nscnames, abi_long arg1, abi_long arg2, abi_long arg3, 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() [all …]
|
| H A D | syscall_defs.h | 492 #define safe_syscall3(type, name, type1, arg1, type2, arg2, type3, arg3) \ argument 493 type safe_##name(type1 arg1, type2 arg2, type3 arg3) \ 495 return safe_syscall(SYS_##name, arg1, arg2, arg3); \ 498 #define safe_syscall4(type, name, type1, arg1, type2, arg2, type3, arg3, \ argument 500 type safe_##name(type1 arg1, type2 arg2, type3 arg3, type4 arg4) \ 502 return safe_syscall(SYS_##name, arg1, arg2, arg3, arg4); \ 505 #define safe_syscall5(type, name, type1, arg1, type2, arg2, type3, arg3, \ argument 507 type safe_##name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \ 510 return safe_syscall(SYS_##name, arg1, arg2, arg3, arg4, arg5); \ 513 #define safe_syscall6(type, name, type1, arg1, type2, arg2, type3, arg3, \ argument [all …]
|
| H A D | bsd-proc.h | 300 abi_ulong arg3) in do_bsd_getresuid() argument 315 if (put_user_s32(suid, arg3)) { in do_bsd_getresuid() 323 abi_ulong arg3) in do_bsd_getresgid() argument 338 if (put_user_s32(suid, arg3)) { in do_bsd_getresgid() 364 abi_long arg3, abi_long arg4) in do_bsd_profil() argument 371 abi_long arg3, abi_long arg4) in do_bsd_ktrace() argument 385 abi_long arg3, abi_long arg4) in do_bsd_ptrace() argument
|
| H A D | qemu.h | 179 abi_long arg2, abi_long arg3, abi_long arg4, 183 abi_long arg2, abi_long arg3, abi_long arg4, 186 abi_long arg2, abi_long arg3, abi_long arg4, 210 abi_long arg1, abi_long arg2, abi_long arg3, 215 abi_long arg1, abi_long arg2, abi_long arg3, 220 abi_long arg1, abi_long arg2, abi_long arg3, 257 abi_ulong arg3, abi_ulong arg4, abi_ulong arg5, abi_ulong arg6);
|
| /openbmc/qemu/tests/tcg/arm/ |
| H A D | hello-arm.c | 55 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument 56 type name(type1 arg1,type2 arg2,type3 arg3) { \ 65 : "r" ((long)(arg1)),"r" ((long)(arg2)),"r" ((long)(arg3)) \ 71 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument 72 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \ 82 : "r" ((long)(arg1)),"r" ((long)(arg2)),"r" ((long)(arg3)),"r" ((long)(arg4)) \ 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) { \ 100 : "r" ((long)(arg1)),"r" ((long)(arg2)),"r" ((long)(arg3)),"r" ((long)(arg4)), \
|
| /openbmc/qemu/target/tricore/ |
| H A D | fpu_helper.c | 52 float32 arg3, float32 result, in f_maddsub_nan_result() argument 59 float32_is_any_nan(arg3)) { in f_maddsub_nan_result() 68 cSign = arg3 >> 31; in f_maddsub_nan_result() 72 cExp = (arg3 >> 23) & 0xff; in f_maddsub_nan_result() 286 float32 arg3 = make_float32(r3); in helper_fmadd() local 289 f_result = float32_muladd(arg1, arg2, arg3, 0, &env->fp_status); in helper_fmadd() 296 arg3 = float32_squash_input_denormal(arg3, &env->fp_status); in helper_fmadd() 297 f_result = f_maddsub_nan_result(arg1, arg2, arg3, f_result, 0); in helper_fmadd() 312 float32 arg3 = make_float32(r3); in helper_fmsub() local 315 f_result = float32_muladd(arg1, arg2, arg3, float_muladd_negate_product, in helper_fmsub() [all …]
|
| /openbmc/qemu/linux-user/ |
| H A D | strace.h | 22 abi_long arg1, abi_long arg2, abi_long arg3, 25 abi_long arg1, abi_long arg2, abi_long arg3,
|
| /openbmc/qemu/include/user/ |
| H A D | syscall-trace.h | 26 abi_long arg3, abi_long arg4, in record_syscall_start() argument 31 arg1, arg2, arg3, arg4, in record_syscall_start()
|
| /openbmc/qemu/target/m68k/ |
| H A D | m68k-semi.c | 130 target_ulong arg0, arg1, arg2, arg3; in do_m68k_semihosting() local 143 semihost_sys_open(cs, m68k_semi_u32_cb, arg0, arg1, arg2, arg3); in do_m68k_semihosting() 171 deposit64(arg2, 32, 32, arg1), arg3); in do_m68k_semihosting() 179 semihost_sys_rename(cs, m68k_semi_u32_cb, arg0, arg1, arg2, arg3); in do_m68k_semihosting()
|
| /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 74 TARGET_ABI_FMT_lx ")", name->name, (int)arg1, arg2, arg3, arg4); in do_freebsd_arch_print_sysarch()
|
| /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 73 TARGET_ABI_FMT_lx ")", name->name, (int)arg1, arg2, arg3, arg4); in do_freebsd_arch_print_sysarch()
|
| /openbmc/bmcweb/redfish-core/include/ |
| H A D | error_messages.hpp | 304 const nlohmann::json& arg1, std::string_view arg2, std::string_view arg3); 308 std::string_view arg3); 321 const nlohmann::json& arg1, std::string_view arg2, std::string_view arg3); 325 std::string_view arg3); 338 std::string_view arg1, std::string_view arg2, std::string_view arg3); 342 std::string_view arg3); 355 std::string_view arg1, std::string_view arg2, std::string_view arg3); 359 std::string_view arg3); 472 std::string_view arg1, std::string_view arg2, std::string_view arg3); 475 std::string_view arg2, std::string_view arg3); [all …]
|
| /openbmc/bmcweb/redfish-core/src/ |
| H A D | error_messages.cpp | 480 const nlohmann::json& arg1, std::string_view arg2, std::string_view arg3) in actionParameterValueTypeError() argument 486 std::to_array<std::string_view>({arg1Str, arg2, arg3})); in actionParameterValueTypeError() 491 std::string_view arg2, std::string_view arg3) in actionParameterValueTypeError() argument 495 actionParameterValueTypeError(arg1, arg2, arg3)); in actionParameterValueTypeError() 506 const nlohmann::json& arg1, std::string_view arg2, std::string_view arg3) in actionParameterValueFormatError() argument 512 std::to_array<std::string_view>({arg1Str, arg2, arg3})); in actionParameterValueFormatError() 517 std::string_view arg3) in actionParameterValueFormatError() argument 521 actionParameterValueFormatError(arg1, arg2, arg3)); in actionParameterValueFormatError() 532 std::string_view arg1, std::string_view arg2, std::string_view arg3) in actionParameterValueNotInList() argument 536 std::to_array({arg1, arg2, arg3})); in actionParameterValueNotInList() [all …]
|
| /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/u-boot/arch/arm/mach-zynqmp/include/mach/ |
| H A D | sys_proto.h | 65 int invoke_smc(u32 pm_api_id, u32 arg0, u32 arg1, u32 arg2, u32 arg3,
|
| /openbmc/qemu/tests/qapi-schema/ |
| H A D | doc-good.out | 44 member arg3: bool optional=False 172 arg=arg3 179 .. note:: @arg3 is undocumented
|
| /openbmc/qemu/hw/acpi/ |
| H A D | nvdimm.c | 426 uint8_t arg3[4084]; member 474 offsetof(NvdimmDsmIn, arg3) > NVDIMM_DSM_MEMORY_SIZE); 492 offsetof(NvdimmDsmIn, arg3) > NVDIMM_DSM_MEMORY_SIZE); 499 offsetof(NvdimmDsmIn, arg3) > NVDIMM_DSM_MEMORY_SIZE); 549 read_fit = (NvdimmFuncReadFITIn *)in->arg3; in nvdimm_dsm_func_read_fit() 640 max_set_size = dsm_memory_size - offsetof(NvdimmDsmIn, arg3) - in nvdimm_get_max_xfer_label_size() 713 get_label_data = (NvdimmFuncGetLabelDataIn *)in->arg3; in nvdimm_dsm_get_label_data() 751 set_label_data = (NvdimmFuncSetLabelDataIn *)in->arg3; in nvdimm_dsm_set_label_data() 766 assert(offsetof(NvdimmDsmIn, arg3) + sizeof(*set_label_data) + in nvdimm_dsm_set_label_data() 999 (sizeof(NvdimmDsmIn) - offsetof(NvdimmDsmIn, arg3)) * BITS_PER_BYTE)); in nvdimm_build_common_dsm()
|