Home
last modified time | relevance | path

Searched refs:p_subsystem_root_path (Results 1 – 6 of 6) sorted by relevance

/xnu-12377.1.9/bsd/kern/
H A Dkern_fork.c894 if (p->p_subsystem_root_path) { in forkproc_free()
895 zfree(ZV_NAMEI, p->p_subsystem_root_path); in forkproc_free()
896 p->p_subsystem_root_path = NULL; in forkproc_free()
1218 if (parent_proc->p_subsystem_root_path) { in forkproc()
1219 size_t parent_length = strlen(parent_proc->p_subsystem_root_path) + 1; in forkproc()
1221 child_proc->p_subsystem_root_path = zalloc_flags(ZV_NAMEI, in forkproc()
1223 memcpy(child_proc->p_subsystem_root_path, parent_proc->p_subsystem_root_path, parent_length); in forkproc()
H A Dbsd_init.c663 kernproc->p_subsystem_root_path = NULL; in bsd_init()
H A Dkern_exit.c2537 if (p->p_subsystem_root_path) { in proc_exit()
2538 zfree(ZV_NAMEI, p->p_subsystem_root_path); in proc_exit()
2539 p->p_subsystem_root_path = NULL; in proc_exit()
H A Dkern_exec.c4216 char * old_subsystem_root_path = p->p_subsystem_root_path; in posix_spawn()
4217 p->p_subsystem_root_path = subsystem_root_path; in posix_spawn()
4228 imgp->ip_subsystem_root_path = p->p_subsystem_root_path; in posix_spawn()
5450 imgp->ip_subsystem_root_path = p->p_subsystem_root_path; in __mac_execve()
H A Dkern_proc.c3903 if (!(proc_getcsflags(pt) & CS_INSTALLER) && (pt->p_subsystem_root_path == NULL)) { in csops_internal()
/xnu-12377.1.9/bsd/sys/
H A Dproc_internal.h504 char * p_subsystem_root_path; member