Lines Matching refs:arg
45 struct ptrace_peeksiginfo_args arg; in check_error_paths() local
67 arg.nr = SIGNR; in check_error_paths()
68 arg.off = 0; in check_error_paths()
71 arg.flags = ~0; in check_error_paths()
72 ret = sys_ptrace(PTRACE_PEEKSIGINFO, child, &arg, addr_rw); in check_error_paths()
79 arg.flags = 0; in check_error_paths()
82 ret = sys_ptrace(PTRACE_PEEKSIGINFO, child, &arg, in check_error_paths()
90 ret = sys_ptrace(PTRACE_PEEKSIGINFO, child, &arg, addr_ro); in check_error_paths()
106 struct ptrace_peeksiginfo_args arg = {.flags = 0, .nr = nr, .off = 0}; in check_direct_path() local
112 arg.flags = PTRACE_PEEKSIGINFO_SHARED; in check_direct_path()
115 arg.flags = 0; in check_direct_path()
120 arg.off = i; in check_direct_path()
121 ret = sys_ptrace(PTRACE_PEEKSIGINFO, child, &arg, siginfo); in check_direct_path()