Home
last modified time | relevance | path

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

/xnu-11215/bsd/kern/
H A Dkern_fork.c901 if (p->p_subsystem_root_path) { in forkproc_free()
902 zfree(ZV_NAMEI, p->p_subsystem_root_path); in forkproc_free()
903 p->p_subsystem_root_path = NULL; in forkproc_free()
1221 if (parent_proc->p_subsystem_root_path) { in forkproc()
1222 size_t parent_length = strlen(parent_proc->p_subsystem_root_path) + 1; in forkproc()
1224 child_proc->p_subsystem_root_path = zalloc_flags(ZV_NAMEI, in forkproc()
1226 memcpy(child_proc->p_subsystem_root_path, parent_proc->p_subsystem_root_path, parent_length); in forkproc()
H A Dbsd_init.c660 kernproc->p_subsystem_root_path = NULL; in bsd_init()
H A Dkern_exit.c2511 if (p->p_subsystem_root_path) { in proc_exit()
2512 zfree(ZV_NAMEI, p->p_subsystem_root_path); in proc_exit()
2513 p->p_subsystem_root_path = NULL; in proc_exit()
H A Dkern_exec.c4101 char * old_subsystem_root_path = p->p_subsystem_root_path; in posix_spawn()
4102 p->p_subsystem_root_path = subsystem_root_path; in posix_spawn()
4113 imgp->ip_subsystem_root_path = p->p_subsystem_root_path; in posix_spawn()
5314 imgp->ip_subsystem_root_path = p->p_subsystem_root_path; in __mac_execve()
/xnu-11215/bsd/sys/
H A Dproc_internal.h503 char * p_subsystem_root_path; member