HomeSort by: relevance | last modified time | path
    Searched refs:fd_lastfile (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/sys/
filedesc.h 155 int fd_lastfile; /* high-water mark of fd_ofiles */ member in struct:filedesc
  /src/sys/kern/
subr_exec_fd.c 60 for (fd = 0; fd <= fdp->fd_lastfile; fd++) {
kern_descrip.c 311 if ((int)fd > fdp->fd_lastfile) {
312 fdp->fd_lastfile = fd;
345 KASSERT(fd <= fdp->fd_lastfile);
346 if (fd == fdp->fd_lastfile) {
347 fdp->fd_lastfile = fd_last_set(fdp, fd);
1334 KASSERT(fdp->fd_lastfile == -1);
1371 fdp->fd_lastfile = -1;
1440 KASSERT(newfdp->fd_lastfile == -1);
1460 lastfile = fdp->fd_lastfile;
1556 newfdp->fd_lastfile = newlast
    [all...]
sys_descrip.c 352 while ((i = fdp->fd_lastfile) >= fd) {
362 *retval = fdp->fd_lastfile;
sys_epoll.c 657 nfds = l->l_proc->p_fd->fd_lastfile + 1;
  /src/usr.bin/fstat/
fstat.c 459 if (filed.fd_lastfile == -1)
470 if ((unsigned)filed.fd_lastfile >= dt.dt_nfiles ||
471 filed.fd_freefile > filed.fd_lastfile + 1) {
497 ALLOC_OFILES(filed.fd_lastfile+1);
499 (filed.fd_lastfile+1) * FPSIZE)) {
504 for (i = 0; i <= filed.fd_lastfile; i++) {
  /src/sys/compat/linux/common/
linux_misc.c 2097 last = MIN(SCARG(uap, last), l->l_proc->p_fd->fd_lastfile);

Completed in 26 milliseconds