Lines Matching refs:tracee
32 struct task_struct *tracee;
132 * yama_ptracer_add - add/replace an exception for this tracer/tracee pair
134 * @tracee: the task_struct of the process to be ptraced
136 * Each tracee can have, at most, one tracer registered. Each time this
137 * is called, the prior registered tracer will be replaced for the tracee.
142 struct task_struct *tracee)
150 added->tracee = tracee;
159 if (relation->tracee == tracee) {
177 * @tracee: remove any relation where tracee task matches
180 struct task_struct *tracee)
189 if (relation->tracee == tracee ||
299 * ptracer_exception_found - tracer registered as exception for this tracee
301 * @tracee: the task_struct of the process to be ptraced
303 * Returns 1 if tracer has a ptracer exception ancestor for tracee.
306 struct task_struct *tracee)
319 parent = ptrace_parent(tracee);
326 if (!thread_group_leader(tracee))
327 tracee = rcu_dereference(tracee->group_leader);
331 if (relation->tracee == tracee) {