Home
last modified time | relevance | path

Searched refs:P2_ASLR_ENABLE (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/kern/
H A Dkern_procctl.c757 p->p_flag2 |= P2_ASLR_ENABLE; in aslr_ctl()
761 p->p_flag2 &= ~P2_ASLR_ENABLE; in aslr_ctl()
764 p->p_flag2 &= ~(P2_ASLR_ENABLE | P2_ASLR_DISABLE); in aslr_ctl()
778 switch (p->p_flag2 & (P2_ASLR_ENABLE | P2_ASLR_DISABLE)) { in aslr_status()
782 case P2_ASLR_ENABLE: in aslr_status()
H A Dimgact_elf.c1261 (imgp->proc->p_flag2 & P2_ASLR_ENABLE) != 0) in __CONCAT()
1290 imgp->proc->p_flag2 &= ~(P2_ASLR_ENABLE | P2_ASLR_DISABLE | in __CONCAT()
1299 } else if ((imgp->proc->p_flag2 & P2_ASLR_ENABLE) != 0 || in __CONCAT()
H A Dkern_fork.c538 p2->p_flag2 = p1->p_flag2 & (P2_ASLR_DISABLE | P2_ASLR_ENABLE | in do_fork()
/freebsd/sys/sys/
H A Dproc.h865 #define P2_ASLR_ENABLE 0x00000040 /* Force enable ASLR. */ macro