Home
last modified time | relevance | path

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

/xnu-8792.61.2/bsd/sys/
H A Dimgact.h85 char *ip_vdata; /* file data (up to one page) */ member
/xnu-8792.61.2/bsd/kern/
H A Dmach_loader.c1551 char *ip_vdata = NULL; in check_if_simulator_binary() local
1568 ip_vdata = kalloc_data(PAGE_SIZE, Z_WAITOK | Z_ZERO); in check_if_simulator_binary()
1569 if (ip_vdata == NULL) { in check_if_simulator_binary()
1574 error = vn_rdwr(UIO_READ, imgp->ip_vp, ip_vdata, in check_if_simulator_binary()
1582 header = (struct mach_header *)ip_vdata; in check_if_simulator_binary()
1689 if (ip_vdata) { in check_if_simulator_binary()
1690 kfree_data(ip_vdata, PAGE_SIZE); in check_if_simulator_binary()
H A Dkern_exec.c582 char *vdata = imgp->ip_vdata; in exec_shell_imgact()
750 struct fat_header *fat_header = (struct fat_header *)imgp->ip_vdata; in exec_fat_imgact()
827 error = vn_rdwr(UIO_READ, imgp->ip_vp, imgp->ip_vdata, in exec_fat_imgact()
836 memset(imgp->ip_vdata + (PAGE_SIZE - resid), 0x0, resid); in exec_fat_imgact()
1153 struct mach_header *mach_header = (struct mach_header *)imgp->ip_vdata; in exec_mach_imgact()
2200 error = vn_rdwr(UIO_READ, imgp->ip_vp, imgp->ip_vdata, PAGE_SIZE, 0, in exec_activate_image()
2209 memset(imgp->ip_vdata + (PAGE_SIZE - resid), 0x0, resid); in exec_activate_image()
7131 imgp->ip_vdata = imgp->ip_strings + (NCARGS + PAGE_SIZE); in execargs_alloc()