Home
last modified time | relevance | path

Searched refs:P_TRACED (Results 1 – 14 of 14) sorted by relevance

/f-stack/freebsd/kern/
H A Dsubr_syscall.c73 traced = (p->p_flag & P_TRACED) != 0; in syscallenter()
249 if (__predict_false(p->p_flag & P_TRACED)) { in syscallret()
H A Dkern_exit.c452 p->p_flag &= ~(P_TRACED | P_PPWAIT | P_PPTRACE); in exit1()
475 if ((q->p_flag & P_TRACED) == 0) { in exit1()
525 q->p_flag &= ~(P_TRACED | P_STOPPED_TRACE); in exit1()
998 (p->p_flag & P_TRACED) != 0)) { in proc_to_reap()
1269 (p->p_flag & P_TRACED) != 0) { in kern_wait6()
1361 KASSERT((child->p_flag & P_TRACED) != 0, in proc_add_orphan()
1394 if ((child->p_flag & P_TRACED) != 0) { in proc_reparent()
H A Dsys_process.c598 p->p_flag |= P_TRACED; in proc_set_traced()
717 if ((p->p_flag & P_TRACED) != 0) { in kern_ptrace()
735 if (p->p_flag & P_TRACED) { in kern_ptrace()
741 if (curp->p_flag & P_TRACED) { in kern_ptrace()
761 if ((p->p_flag & P_TRACED) == 0) { in kern_ptrace()
1022 p->p_flag &= ~(P_TRACED | P_WAITED); in kern_ptrace()
H A Dkern_sig.c2282 if (p->p_flag & P_TRACED) in tdsendsignal()
2298 if (p->p_flag & P_TRACED) in tdsendsignal()
2348 if (p->p_flag & P_TRACED) in tdsendsignal()
2651 if (!(p->p_flag & P_TRACED)) in ptracestop()
2715 if (p->p_flag & P_TRACED || in reschedule_signals()
2887 if ((p->p_flag & (P_TRACED | P_PPTRACE)) == P_TRACED && in issignal()
2907 (p->p_flag & P_TRACED) == 0) { in issignal()
2912 if ((p->p_flag & (P_TRACED | P_PPTRACE)) == P_TRACED) { in issignal()
2955 if ((p->p_flag & P_TRACED) == 0) { in issignal()
2994 if ((p->p_flag & (P_TRACED | P_WEXIT | in issignal()
[all …]
H A Dkern_procctl.c349 if ((p->p_flag & P_TRACED) != 0 || p->p_traceflag != 0) in trace_ctl()
383 KASSERT((p->p_flag & P_TRACED) == 0, in trace_status()
386 } else if ((p->p_flag & P_TRACED) != 0) { in trace_status()
H A Dsys_procdesc.c402 if ((p->p_flag & P_TRACED) == 0) { in procdesc_close()
H A Dkern_fork.c1101 if ((p->p_flag & P_TRACED) != 0) { in fork_return()
1115 } else if (p->p_flag & P_TRACED || td->td_dbgflags & TDB_BORN) { in fork_return()
H A Dkern_thread.c1283 return (P_SHOULDSTOP(p) || ((p->p_flag & P_TRACED) != 0 && in thread_suspend_check_needed()
1449 ((p->p_flag & P_TRACED) && (td->td_dbgflags & TDB_SUSPEND))) in thread_check_susp()
H A Dkern_exec.c529 (p->p_flag & P_TRACED) == 0) { in do_execve()
H A Dkern_proc.c1157 if (p->p_flag & P_TRACED) in fill_kinfo_proc_only()
/f-stack/freebsd/ddb/
H A Ddb_ps.c220 if (p->p_flag & P_TRACED) in db_ps_proc()
/f-stack/freebsd/i386/linux/
H A Dlinux_ptrace.c366 if ((p->p_flag & P_TRACED) == 0) { in linux_ptrace()
/f-stack/freebsd/vm/
H A Dvm_swapout.c802 P_TRACED | P_SWAPPINGOUT | P_SWAPPINGIN | P_INMEM)) != in swapout_procs()
/f-stack/freebsd/sys/
H A Dproc.h762 #define P_TRACED 0x00000800 /* Debugged process being traced. */ macro