vcp 589 compat/linux/linux_exec.c struct exec_vmcmd *vcp;
vcp 591 compat/linux/linux_exec.c vcp = &vcset.evs_cmds[i];
vcp 592 compat/linux/linux_exec.c error = (*vcp->ev_proc)(p, vcp);
vcp 67 kern/exec_subr.c struct exec_vmcmd *vcp;
vcp 71 kern/exec_subr.c vcp = &evsp->evs_cmds[evsp->evs_used++];
vcp 72 kern/exec_subr.c vcp->ev_proc = proc;
vcp 73 kern/exec_subr.c vcp->ev_len = len;
vcp 74 kern/exec_subr.c vcp->ev_addr = addr;
vcp 75 kern/exec_subr.c if ((vcp->ev_vp = vp) != NULL)
vcp 77 kern/exec_subr.c vcp->ev_offset = offset;
vcp 78 kern/exec_subr.c vcp->ev_prot = prot;
vcp 79 kern/exec_subr.c vcp->ev_flags = flags;
vcp 112 kern/exec_subr.c struct exec_vmcmd *vcp;
vcp 116 kern/exec_subr.c vcp = &evsp->evs_cmds[i];
vcp 117 kern/exec_subr.c if (vcp->ev_vp != NULLVP)
vcp 118 kern/exec_subr.c vrele(vcp->ev_vp);
vcp 139 kern/exec_subr.c struct exec_vmcmd *vcp;
vcp 141 kern/exec_subr.c vcp = &epp->ep_vmcmds.evs_cmds[i];
vcp 143 kern/exec_subr.c if (vcp->ev_flags & VMCMD_RELATIVE) {
vcp 148 kern/exec_subr.c vcp->ev_addr += base_vc->ev_addr;
vcp 150 kern/exec_subr.c error = (*vcp->ev_proc)(p, vcp);
vcp 151 kern/exec_subr.c if (vcp->ev_flags & VMCMD_BASE) {
vcp 152 kern/exec_subr.c base_vc = vcp;
vcp 275 ntfs/ntfs_vfsops.c struct vfsconf *vcp )
vcp 199 sys/exec.h struct exec_vmcmd *vcp; \
vcp 202 sys/exec.h vcp = &(evsp)->evs_cmds[(evsp)->evs_used++]; \
vcp 203 sys/exec.h vcp->ev_proc = (proc); \
vcp 204 sys/exec.h vcp->ev_len = (len); \
vcp 205 sys/exec.h vcp->ev_addr = (addr); \
vcp 206 sys/exec.h if ((vcp->ev_vp = (vp)) != NULLVP) \
vcp 208 sys/exec.h vcp->ev_offset = (offset); \
vcp 209 sys/exec.h vcp->ev_prot = (prot); \
vcp 210 sys/exec.h vcp->ev_flags = (flags); \