Searched refs:ip_vdata (Results 1 – 3 of 3) sorted by relevance
| /xnu-8020.121.3/bsd/sys/ |
| H A D | imgact.h | 85 char *ip_vdata; /* file data (up to one page) */ member
|
| /xnu-8020.121.3/bsd/kern/ |
| H A D | mach_loader.c | 1511 char *ip_vdata = NULL; in check_if_simulator_binary() local 1528 ip_vdata = kalloc_data(PAGE_SIZE, Z_WAITOK | Z_ZERO); in check_if_simulator_binary() 1529 if (ip_vdata == NULL) { in check_if_simulator_binary() 1534 error = vn_rdwr(UIO_READ, imgp->ip_vp, ip_vdata, in check_if_simulator_binary() 1542 header = (struct mach_header *)ip_vdata; in check_if_simulator_binary() 1649 if (ip_vdata) { in check_if_simulator_binary() 1650 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() 820 error = vn_rdwr(UIO_READ, imgp->ip_vp, imgp->ip_vdata, in exec_fat_imgact() 829 memset(imgp->ip_vdata + (PAGE_SIZE - resid), 0x0, resid); in exec_fat_imgact() 1011 struct mach_header *mach_header = (struct mach_header *)imgp->ip_vdata; in exec_mach_imgact() 1856 error = vn_rdwr(UIO_READ, imgp->ip_vp, imgp->ip_vdata, PAGE_SIZE, 0, in exec_activate_image() 1865 memset(imgp->ip_vdata + (PAGE_SIZE - resid), 0x0, resid); in exec_activate_image() 6722 imgp->ip_vdata = imgp->ip_strings + (NCARGS + PAGE_SIZE); in execargs_alloc()
|