Lines Matching defs:fpp
1154 * If fpp != NULL, opened file is not installed into the file
1155 * descriptor table, instead it is returned in *fpp. This is
1160 enum uio_seg pathseg, int flags, int mode, struct file **fpp)
1234 MPASS(fpp == NULL);
1276 if (fpp != NULL) {
1279 *fpp = fp;
1321 enum uio_seg pathseg, int flags, int mode, struct file **fpp)
1327 error = openatfp(td, dirfd, path, pathseg, flags, mode, fpp);
4369 struct file **fpp)
4392 *fpp = NULL;
4396 *fpp = fp;
4406 getvnode(struct thread *td, int fd, cap_rights_t *rightsp, struct file **fpp)
4410 error = getvnode_path(td, fd, rightsp, fpp);
4418 if (__predict_false((*fpp)->f_ops == &path_fileops)) {
4419 fdrop(*fpp, td);
4420 *fpp = NULL;