Searched refs:resultfp (Results 1 – 3 of 3) sorted by relevance
| /freebsd/sys/sys/ |
| H A D | filedesc.h | 230 #define falloc(td, resultfp, resultfd, flags) \ argument 231 falloc_caps(td, resultfp, resultfd, flags, NULL) 254 int falloc_caps(struct thread *td, struct file **resultfp, int *resultfd, 257 int _falloc_noinstall(struct thread *td, struct file **resultfp, u_int n); 258 #define falloc_noinstall(td, resultfp) _falloc_noinstall(td, resultfp, 1) argument
|
| /freebsd/sys/kern/ |
| H A D | sys_procdesc.c | 223 procdesc_falloc(struct thread *td, struct file **resultfp, int *resultfd, in procdesc_falloc() argument 228 error = falloc_caps(td, resultfp, resultfd, pdtofdflags(flags), fcaps); in procdesc_falloc() 230 (*resultfp)->f_pdflags |= F_PD_NOKILL; in procdesc_falloc()
|
| H A D | kern_descrip.c | 2213 falloc_caps(struct thread *td, struct file **resultfp, int *resultfd, int flags, in falloc_caps() argument 2219 MPASS(resultfp != NULL); in falloc_caps() 2233 *resultfp = fp; in falloc_caps() 2243 _falloc_noinstall(struct thread *td, struct file **resultfp, u_int n) in _falloc_noinstall() argument 2251 KASSERT(resultfp != NULL, ("%s: resultfp == NULL", __func__)); in _falloc_noinstall() 2270 *resultfp = fp; in _falloc_noinstall()
|