Lines Matching refs:child
262 void user_enable_single_step(struct task_struct *child) in user_enable_single_step() argument
268 tmp = get_stack_long(child, (unsigned long) &dummy->regs.epsw); in user_enable_single_step()
270 put_stack_long(child, (unsigned long) &dummy->regs.epsw, tmp); in user_enable_single_step()
277 void user_disable_single_step(struct task_struct *child) in user_disable_single_step() argument
283 tmp = get_stack_long(child, (unsigned long) &dummy->regs.epsw); in user_disable_single_step()
285 put_stack_long(child, (unsigned long) &dummy->regs.epsw, tmp); in user_disable_single_step()
289 void ptrace_disable(struct task_struct *child) in ptrace_disable() argument
291 user_disable_single_step(child); in ptrace_disable()
297 long arch_ptrace(struct task_struct *child, long request, in arch_ptrace() argument
313 tmp = get_stack_long(child, in arch_ptrace()
326 ret = put_stack_long(child, ptrace_regid_to_frame[addr], in arch_ptrace()
331 return copy_regset_to_user(child, &user_mn10300_native_view, in arch_ptrace()
337 return copy_regset_from_user(child, &user_mn10300_native_view, in arch_ptrace()
343 return copy_regset_to_user(child, &user_mn10300_native_view, in arch_ptrace()
349 return copy_regset_from_user(child, &user_mn10300_native_view, in arch_ptrace()
355 ret = ptrace_request(child, request, addr, data); in arch_ptrace()