Searched refs:p_textvp (Results 1 – 13 of 13) sorted by relevance
| /xnu-12377.41.6/bsd/kern/ |
| H A D | kern_cs.c | 585 if (NULL == p->p_textvp) { in csproc_get_blob() 593 return ubc_cs_blob_get(p->p_textvp, -1, -1, p->p_textoff); in csproc_get_blob() 1725 if (NULL == p->p_textvp) { in csproc_get_platform_identifier() 1729 return csvnode_get_platform_identifier(p->p_textvp, p->p_textoff); in csproc_get_platform_identifier() 1852 return cs_entitlements_blob_get_vnode(p->p_textvp, p->p_textoff, out_start, out_length); in cs_entitlements_blob_get() 1876 if (NULL == p->p_textvp) { in cs_entitlements_dictionary_copy() 1880 if ((csblob = ubc_cs_blob_get(p->p_textvp, -1, -1, p->p_textoff)) == NULL) { in cs_entitlements_dictionary_copy() 1903 if (NULL == p->p_textvp) { in cs_identity_get() 1907 if ((csblob = ubc_cs_blob_get(p->p_textvp, -1, -1, p->p_textoff)) == NULL) { in cs_identity_get() 1931 if (NULL == p->p_textvp) { in cs_blob_get() [all …]
|
| H A D | kern_fork.c | 850 if (p->p_textvp) { in forkproc_free() 851 vnode_rele(p->p_textvp); in forkproc_free() 852 p->p_textvp = NULL; in forkproc_free() 1067 if (child_proc->p_textvp != NULLVP) { in forkproc() 1070 if ((error = vnode_getwithref(child_proc->p_textvp)) == 0) { in forkproc() 1071 error = vnode_ref(child_proc->p_textvp); in forkproc() 1072 vnode_put(child_proc->p_textvp); in forkproc() 1076 child_proc->p_textvp = NULLVP; in forkproc()
|
| H A D | kern_exec.c | 7490 …mac_reset_ipc = mac_proc_check_inherit_ipc_ports(p, p->p_textvp, p->p_textoff, imgp->ip_vp, imgp->… in exec_handle_sugid() 8240 vnode_t tvp = p->p_textvp; in exec_resettextvp() 8253 p->p_textvp = vp; in exec_resettextvp() 8256 p->p_textvp = NULLVP; /* this is paranoia */ in exec_resettextvp() 8550 if (p->p_textvp != NULLVP) { in process_signature() 8551 csb = ubc_cs_blob_get(p->p_textvp, -1, -1, p->p_textoff); in process_signature() 8560 (ubc_cs_generation_check(p->p_textvp) == 0 || in process_signature() 8561 ubc_cs_blob_revalidate(p->p_textvp, csb, imgp, 0, proc_platform(p)) == 0) && in process_signature()
|
| H A D | kern_proc.c | 2044 return vn_getcdhash(p->p_textvp, p->p_textoff, cdhash, NULL); in proc_getcdhash() 2153 vnode_t tvp = p->p_textvp; in proc_getexecutablevnode() 2171 vnode_t tvp = p->p_textvp; in proc_getexecutablevnode_noblock() 3709 tvp = pt->p_textvp; in csops_internal() 3729 tvp = pt->p_textvp; in csops_internal()
|
| H A D | kern_exit.c | 2528 tvp = p->p_textvp; in proc_exit() 2529 p->p_textvp = NULL; in proc_exit()
|
| H A D | proc_info.c | 1402 tvp = p->p_textvp; in proc_pidpathinfo() 1428 tvp = p->p_textvp; in proc_pidpathinfo_internal()
|
| /xnu-12377.41.6/bsd/tests/ |
| H A D | ptrauth_data_tests_sysctl.c | 98 ALLOC_VALIDATE_DATA_PTR(struct proc, struct vnode *, p_textvp, "proc.p_textvp");
|
| /xnu-12377.41.6/bsd/sys/ |
| H A D | proc_internal.h | 380 struct vnode * XNU_PTRAUTH_SIGNED_PTR("proc.p_textvp") p_textvp; /* Vnode of executable. */ 673 uint32_t p_textvp; /* Vnode of executable. */ member 725 user_addr_t p_textvp __attribute((aligned(8))); /* Vnode of executable. */
|
| H A D | proc.h | 142 struct vnode *p_textvp; /* Vnode of executable. */ member
|
| /xnu-12377.41.6/bsd/dev/dtrace/ |
| H A D | dtrace_subr.c | 130 if ((tvp = p->p_textvp) == NULLVP) in dtrace_proc_get_execpath()
|
| /xnu-12377.41.6/tools/lldbmacros/tests/lldb_tests/ |
| H A D | test_scripted_process.py | 317 mock.p_textvp = 0xfeedface
|
| /xnu-12377.41.6/tools/lldbmacros/ |
| H A D | memory.py | 3820 filepath = GetVnodePath(p.p_textvp) 3822 mappings = FindVMEntriesForVnode(t, p.p_textvp)
|
| /xnu-12377.41.6/bsd/netinet/ |
| H A D | in_pcb.c | 1459 vn_stat_error = vn_stat(proc->p_textvp, &sb, NULL, 1, 0, context); in apn_fallback_required()
|