Home
last modified time | relevance | path

Searched refs:closef (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/lua/src/
H A Dliolib.c154 #define isclosed(p) ((p)->closef == NULL)
197 p->closef = NULL; /* mark file handle as 'closed' */ in newprefile()
210 volatile lua_CFunction cf = p->closef; in aux_close()
211 p->closef = NULL; /* mark stream as closed */ in aux_close()
250 p->closef = &io_fclose; in newfile()
290 p->closef = &io_pclose; in io_popen()
792 p->closef = &io_noclose; /* keep file opened */ in io_noclose()
803 p->closef = &io_noclose; in createstdfile()
H A Dlauxlib.h222 lua_CFunction closef; /* to close stream (NULL for closed streams) */ member
/freebsd-13.1/sys/sys/
H A Dfiledesc.h231 int closef(struct file *fp, struct thread *td);
/freebsd-13.1/sys/kern/
H A Dkern_descrip.c1307 error = closef(fp, td); in closefp_impl()
2644 (void) closef(fp, td); in fdescfree_fds()
2770 (void) closef(fp, td); in fdsetugidsafety()
2871 closef(struct file *fp, struct thread *td) in closef() function