Home | History | Annotate | Download | only in kern

Lines Matching defs:fd_getfile

354 fd_getfile(unsigned fd)
395 * C. fd_getfile atomic_inc_uint(&ff->ff_refcnt)
396 * D. fd_getfile load fp = ff->ff_file
407 * the same that fd_getfile ends up with an fp that's
411 * making C an acquire operation in fd_getfile, since
417 * sequenced before D in fd_getfile, we
418 * guarantee A happens before D, so fd_getfile
421 * - C happens before B. Then fd_getfile may read
442 * Release a reference to a file descriptor acquired with fd_getfile().
502 * Convenience wrapper around fd_getfile() that returns reference
511 fp = fd_getfile(fd);
530 * Convenience wrapper around fd_getfile() that returns reference
536 *fp = fd_getfile(fd);
658 * fd_getfile() will notice that the file is being closed and drop
796 if (fd_getfile(newfd) != NULL) {
1083 * lookups in fd_getfile().
1113 * the change to fd_dt. See fd_getfile().
1724 if ((fp = fd_getfile(old)) == NULL) {