fd_ofiles 127 kern/kern_descrip.c struct file **ofiles = fd->fd_ofiles;
fd_ofiles 184 kern/kern_descrip.c if ((u_int)fd >= fdp->fd_nfiles || (fp = fdp->fd_ofiles[fd]) == NULL)
fd_ofiles 516 kern/kern_descrip.c oldfp = fdp->fd_ofiles[new];
fd_ofiles 520 kern/kern_descrip.c fdp->fd_ofiles[new] = fp;
fd_ofiles 540 kern/kern_descrip.c fdp->fd_ofiles[fd] = NULL;
fd_ofiles 554 kern/kern_descrip.c fpp = &fdp->fd_ofiles[fd];
fd_ofiles 744 kern/kern_descrip.c bcopy(fdp->fd_ofiles, newofile,
fd_ofiles 752 kern/kern_descrip.c free(fdp->fd_ofiles, M_FILEDESC);
fd_ofiles 777 kern/kern_descrip.c fdp->fd_ofiles = newofile;
fd_ofiles 815 kern/kern_descrip.c if ((fq = p->p_fd->fd_ofiles[0]) != NULL) {
fd_ofiles 820 kern/kern_descrip.c p->p_fd->fd_ofiles[i] = fp;
fd_ofiles 857 kern/kern_descrip.c newfdp->fd_fd.fd_ofiles = newfdp->fd_dfiles;
fd_ofiles 905 kern/kern_descrip.c newfdp->fd_ofiles = ((struct filedesc0 *) newfdp)->fd_dfiles;
fd_ofiles 918 kern/kern_descrip.c newfdp->fd_ofiles = malloc(i * OFILESIZE, M_FILEDESC, M_WAITOK);
fd_ofiles 919 kern/kern_descrip.c newfdp->fd_ofileflags = (char *) &newfdp->fd_ofiles[i];
fd_ofiles 933 kern/kern_descrip.c bcopy(fdp->fd_ofiles, newfdp->fd_ofiles, i * sizeof(struct file **));
fd_ofiles 942 kern/kern_descrip.c fpp = newfdp->fd_ofiles;
fd_ofiles 952 kern/kern_descrip.c fpp = newfdp->fd_ofiles;
fd_ofiles 980 kern/kern_descrip.c fpp = fdp->fd_ofiles;
fd_ofiles 991 kern/kern_descrip.c free(fdp->fd_ofiles, M_FILEDESC);
fd_ofiles 1223 kern/kern_descrip.c fdp->fd_ofiles[indx] = wfp;
fd_ofiles 1233 kern/kern_descrip.c fdp->fd_ofiles[indx] = fdp->fd_ofiles[dfd];
fd_ofiles 1235 kern/kern_descrip.c fdp->fd_ofiles[dfd] = NULL;
fd_ofiles 701 kern/uipc_usrreq.c p->p_fd->fd_ofiles[fdp[i]] = fp;
fd_ofiles 60 sys/filedesc.h struct file **fd_ofiles; /* file structures for open files */