• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/bsd/kern/

Lines Matching defs:resultfp

117 int falloc_locked(proc_t p, struct fileproc **resultfp, int *resultfd, vfs_context_t ctx, int locked);
118 int fdgetf_noref(proc_t p, int fd, struct fileproc **resultfp);
2373 * resultfp Pointer to pointer return area
2379 * *resultfp (modified) Pointer to fileproc pointer
2388 fdgetf_noref(proc_t p, int fd, struct fileproc **resultfp)
2398 if (resultfp)
2399 *resultfp = fp;
2413 * resultfp Pointer to result fileproc
2423 * *resultfp (modified) Fileproc pointer
2426 * Notes: The resultfp and resultvp fields are optional, and may be
2432 fp_getfvp(proc_t p, int fd, struct fileproc **resultfp, struct vnode **resultvp)
2450 if (resultfp)
2451 *resultfp = fp;
2469 * resultfp Pointer to result fileproc
2480 * *resultfp (modified) Fileproc pointer
2484 * Notes: The resultfp and resultvp fields are optional, and may be
2490 fp_getfvpandvid(proc_t p, int fd, struct fileproc **resultfp,
2509 if (resultfp)
2510 *resultfp = fp;
2530 * resultfp Pointer to result fileproc
2540 * *resultfp (modified) Fileproc pointer
2547 fp_getfsock(proc_t p, int fd, struct fileproc **resultfp,
2566 if (resultfp)
2567 *resultfp = fp;
2585 * resultfp Pointer to result fileproc
2595 * *resultfp (modified) Fileproc pointer
2602 fp_getfkq(proc_t p, int fd, struct fileproc **resultfp,
2621 if (resultfp)
2622 *resultfp = fp;
2640 * resultfp Pointer to result fileproc
2652 * *resultfp (modified) Fileproc pointer
2659 fp_getfpshm(proc_t p, int fd, struct fileproc **resultfp,
2679 if (resultfp)
2680 *resultfp = fp;
2698 * resultfp Pointer to result fileproc
2710 * *resultfp (modified) Fileproc pointer
2726 fp_getfpsem(proc_t p, int fd, struct fileproc **resultfp,
2745 if (resultfp)
2746 *resultfp = fp;
2764 * resultfp Pointer to result fileproc
2774 * *resultfp (modified) Fileproc pointer
2781 fp_getfpipe(proc_t p, int fd, struct fileproc **resultfp,
2800 if (resultfp)
2801 *resultfp = fp;
2822 * resultfp Pointer to result fileproc
2831 * *resultfp (modified) Fileproc pointer
2841 fp_getfatalk(proc_t p, int fd, struct fileproc **resultfp,
2860 if (resultfp)
2861 *resultfp = fp;
2879 * resultfp Pointer to result fileproc
2888 * *resultfp (modified) Fileproc pointer
2895 fp_lookup(proc_t p, int fd, struct fileproc **resultfp, int locked)
2911 if (resultfp)
2912 *resultfp = fp;
3280 * resultfp Pointer to fileproc pointer
3304 falloc(proc_t p, struct fileproc **resultfp, int *resultfd, vfs_context_t ctx)
3309 error = falloc_locked(p, resultfp, resultfd, ctx, 1);
3329 * resultfp Pointer to fileproc pointer
3359 falloc_locked(proc_t p, struct fileproc **resultfp, int *resultfd,
3446 if (resultfp)
3447 *resultfp = fp;