Home
last modified time | relevance | path

Searched refs:imgp (Results 1 – 4 of 4) sorted by relevance

/dragonfly/sys/kern/
H A Dkern_exec.c240 imgp->proc = p; in kern_execve()
249 imgp->vp = NULL; in kern_execve()
252 imgp->execpath = imgp->freepath = NULL; in kern_execve()
279 imgp->vp = NULL; in kern_execve()
372 vn_fullpath(imgp->proc, imgp->vp, &imgp->execpath, in kern_execve()
600 i = imgp->args->begin_envv - imgp->args->begin_argv; in kern_execve()
617 if (imgp->vp) in kern_execve()
858 imgp->firstpage = &imgp->firstpage_cache; in exec_map_first_page()
859 err = exec_map_page(imgp, 0, &imgp->firstpage, &imgp->image_header); in exec_map_first_page()
1159 if (imgp->execpath != NULL && imgp->auxargs != NULL) in exec_copyout_strings()
[all …]
H A Dimgact_shell.c63 if (imgp->interpreted) in exec_shell_imgact()
66 imgp->interpreted = 1; in exec_shell_imgact()
123 bcopy(imgp->args->begin_argv + length, imgp->args->begin_argv + offset, in exec_shell_imgact()
124 imgp->args->endp - (imgp->args->begin_argv + length)); in exec_shell_imgact()
127 imgp->args->begin_envv += offset; in exec_shell_imgact()
128 imgp->args->endp += offset; in exec_shell_imgact()
129 imgp->args->space -= offset; in exec_shell_imgact()
160 imgp->args->argc++; in exec_shell_imgact()
169 error = copystr(imgp->args->fname, imgp->args->buf + offset, in exec_shell_imgact()
170 imgp->args->space, &length); in exec_shell_imgact()
[all …]
H A Dimgact_elf.c434 imgp->proc = p; in __elfN()
435 imgp->lvap = lvap; in __elfN()
438 imgp->vp = NULL; in __elfN()
467 vn_unlock(imgp->vp); in __elfN()
523 if (imgp->firstpage) in __elfN()
525 if (imgp->vp) { in __elfN()
526 vrele(imgp->vp); in __elfN()
527 imgp->vp = NULL; in __elfN()
729 imgp->proc, in __CONCAT()
731 imgp->vp, in __CONCAT()
[all …]
H A Dimgact_resident.c166 exec_resident_imgact(struct image_params *imgp) in exec_resident_imgact() argument
174 if ((vmres = imgp->vp->v_resident) == NULL) { in exec_resident_imgact()
185 exec_new_vmspace(imgp, vmres->vr_vmspace); in exec_resident_imgact()
186 imgp->resident = 1; in exec_resident_imgact()
187 imgp->interpreted = 0; in exec_resident_imgact()
188 imgp->proc->p_sysent = vmres->vr_sysent; in exec_resident_imgact()
189 imgp->entry_addr = vmres->vr_entry_addr; in exec_resident_imgact()