Home
last modified time | relevance | path

Searched refs:f_close (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/compiler-rt/test/sanitizer_common/TestCases/Posix/
Dfunopen.cpp46 int f_close(void *cookie) { in f_close() function
73 fp = funopen(&cookie_var, f_read, f_write, NULL, f_close); in main()
/external/llvm-project/compiler-rt/test/sanitizer_common/TestCases/NetBSD/
Dfunopen2.cpp54 int f_close(void *cookie) { in f_close() function
81 fp = funopen2(&cookie_var, f_read, f_write, NULL, NULL, f_close); in main()
/external/python/cpython2/Include/
Dfileobject.h15 int (*f_close)(FILE *); member
/external/lua/src/
Dliolib.c216 static int f_close (lua_State *L) { in f_close() function
225 return f_close(L); in io_close()
759 {"close", f_close},
/external/python/cpython2/Doc/c-api/
Dfile.rst75 This prevents Python from calling f_close() on it from another thread.
/external/python/cpython2/Objects/
Dfileobject.c164 f->f_close = close; in fill_file_fields()
433 local_close = f->f_close; in close_the_file()