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 58 for (fd = 0; fd <= fdp->fd_lastfile; fd++) {
kern_descrip.c 308 if ((int)fd > fdp->fd_lastfile) {
309 fdp->fd_lastfile = fd;
342 KASSERT(fd <= fdp->fd_lastfile);
343 if (fd == fdp->fd_lastfile) {
344 fdp->fd_lastfile = fd_last_set(fdp, fd);
1331 KASSERT(fdp->fd_lastfile == -1);
1368 fdp->fd_lastfile = -1;
1437 KASSERT(newfdp->fd_lastfile == -1);
1457 lastfile = fdp->fd_lastfile;
1553 newfdp->fd_lastfile = newlast
    [all...]
sys_descrip.c 349 while ((i = fdp->fd_lastfile) >= fd) {
359 *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 17 milliseconds