Home
last modified time | relevance | path

Searched refs:ip_flags (Results 1 – 3 of 3) sorted by relevance

/xnu-11417.101.15/bsd/kern/
H A Dmach_loader.c370 if (imgp->ip_flags & IMGPF_NOJOP) { in process_is_plugin_host()
386 bool ret = imgp->ip_flags & IMGPF_PLUGIN_HOST_DISABLE_A_KEYS; in process_is_plugin_host()
456 int in_exec = (imgp->ip_flags & IMGPF_EXEC); in load_machfile()
470 result->is_64bit_addr = ((imgp->ip_flags & IMGPF_IS_64BIT_ADDR) == IMGPF_IS_64BIT_ADDR); in load_machfile()
471 result->is_64bit_data = ((imgp->ip_flags & IMGPF_IS_64BIT_DATA) == IMGPF_IS_64BIT_DATA); in load_machfile()
473 pmap_flags |= (imgp->ip_flags & IMGPF_NOJOP) ? PMAP_CREATE_DISABLE_JOP : 0; in load_machfile()
476 pmap_flags |= (imgp->ip_flags & IMGPF_ROSETTA) ? PMAP_CREATE_ROSETTA : 0; in load_machfile()
536 if ((header->flags & MH_NO_HEAP_EXECUTION) && !(imgp->ip_flags & IMGPF_ALLOW_DATA_EXEC)) { in load_machfile()
543 if (!(imgp->ip_flags & IMGPF_DISABLE_ASLR)) { in load_machfile()
571 result->is_64bit_addr = ((imgp->ip_flags & IMGPF_IS_64BIT_ADDR) == IMGPF_IS_64BIT_ADDR); in load_machfile()
[all …]
H A Dkern_exec.c639 (imgp->ip_flags & IMGPF_INTERPRET) != 0) { in exec_shell_imgact()
648 imgp->ip_flags |= IMGPF_INTERPRET; in exec_shell_imgact()
1095 if (imgp->ip_flags & IMGPF_ROSETTA) { in exec_setup_tpro()
1100 if (!(imgp->ip_flags & IMGPF_IS_64BIT_ADDR)) { in exec_setup_tpro()
1259 imgp->ip_flags |= IMGPF_HARDENED_HEAP; in apply_hardened_heap_policy()
1384 int spawn = (imgp->ip_flags & IMGPF_SPAWN); in exec_mach_imgact()
1386 int exec = (imgp->ip_flags & IMGPF_EXEC); in exec_mach_imgact()
1431 imgp->ip_flags |= IMGPF_IS_64BIT_ADDR | IMGPF_IS_64BIT_DATA; in exec_mach_imgact()
1487 imgp->ip_flags &= ~IMGPF_NOJOP; in exec_mach_imgact()
1489 imgp->ip_flags |= IMGPF_NOJOP; in exec_mach_imgact()
[all …]
/xnu-11417.101.15/bsd/sys/
H A Dimgact.h86 int ip_flags; /* image flags */ member