Searched refs:ip_vdata (Results 1 – 3 of 3) sorted by relevance
| /xnu-8019.80.24/bsd/sys/ |
| H A D | imgact.h | 85 char *ip_vdata; /* file data (up to one page) */ member
|
| /xnu-8019.80.24/bsd/kern/ |
| H A D | mach_loader.c | 1512 char *ip_vdata = NULL; in check_if_simulator_binary() local 1529 ip_vdata = kalloc_data(PAGE_SIZE, Z_WAITOK | Z_ZERO); in check_if_simulator_binary() 1530 if (ip_vdata == NULL) { in check_if_simulator_binary() 1535 error = vn_rdwr(UIO_READ, imgp->ip_vp, ip_vdata, in check_if_simulator_binary() 1543 header = (struct mach_header *)ip_vdata; in check_if_simulator_binary() 1650 if (ip_vdata) { in check_if_simulator_binary() 1651 kfree_data(ip_vdata, PAGE_SIZE); in check_if_simulator_binary()
|
| H A D | kern_exec.c | 575 char *vdata = imgp->ip_vdata; in exec_shell_imgact() 743 struct fat_header *fat_header = (struct fat_header *)imgp->ip_vdata; in exec_fat_imgact() 819 error = vn_rdwr(UIO_READ, imgp->ip_vp, imgp->ip_vdata, in exec_fat_imgact() 828 memset(imgp->ip_vdata + (PAGE_SIZE - resid), 0x0, resid); in exec_fat_imgact() 1010 struct mach_header *mach_header = (struct mach_header *)imgp->ip_vdata; in exec_mach_imgact() 1855 error = vn_rdwr(UIO_READ, imgp->ip_vp, imgp->ip_vdata, PAGE_SIZE, 0, in exec_activate_image() 1864 memset(imgp->ip_vdata + (PAGE_SIZE - resid), 0x0, resid); in exec_activate_image() 6767 imgp->ip_vdata = imgp->ip_strings + (NCARGS + PAGE_SIZE); in execargs_alloc()
|