Lines Matching refs:arg
46 struct ptrace_peeksiginfo_args arg; in check_error_paths() local
68 arg.nr = SIGNR; in check_error_paths()
69 arg.off = 0; in check_error_paths()
72 arg.flags = ~0; in check_error_paths()
73 ret = sys_ptrace(PTRACE_PEEKSIGINFO, child, &arg, addr_rw); in check_error_paths()
80 arg.flags = 0; in check_error_paths()
83 ret = sys_ptrace(PTRACE_PEEKSIGINFO, child, &arg, in check_error_paths()
91 ret = sys_ptrace(PTRACE_PEEKSIGINFO, child, &arg, addr_ro); in check_error_paths()
107 struct ptrace_peeksiginfo_args arg = {.flags = 0, .nr = nr, .off = 0}; in check_direct_path() local
113 arg.flags = PTRACE_PEEKSIGINFO_SHARED; in check_direct_path()
116 arg.flags = 0; in check_direct_path()
121 arg.off = i; in check_direct_path()
122 ret = sys_ptrace(PTRACE_PEEKSIGINFO, child, &arg, siginfo); in check_direct_path()