/src/sbin/savecore/ |
zopen.c | 38 return funopen(gz, xgzread, NULL, NULL, (int (*)(void *))gzclose); 40 return funopen(gz, NULL, xgzwrite, NULL, (int (*)(void *))gzclose);
|
/src/lib/libc/stdio/ |
Makefile.inc | 12 funopen.c fvwrite.c fwalk.c fwide.c fwprintf.c fwrite.c fwscanf.c \ 30 fseek.3 funopen.3 fwide.3 getc.3 getdelim.3 getwc.3 mktemp.3 printf.3 \ 43 MLINKS+=funopen.3 fropen.3 funopen.3 fwopen.3 44 MLINKS+=funopen.3 funopen2.3 funopen.3 fropen2.3 funopen.3 fwopen2.3
|
funopen.c | 1 /* $NetBSD: funopen.c,v 1.15 2016/10/23 21:01:52 christos Exp $ */ 38 static char sccsid[] = "@(#)funopen.c 8.1 (Berkeley) 6/4/93"; 40 __RCSID("$NetBSD: funopen.c,v 1.15 2016/10/23 21:01:52 christos Exp $"); 147 funopen(const void *cookie, function in typeref:typename:FILE *
|
/src/tests/lib/libc/locale/ |
t_io.c | 162 FILE *fp = funopen(&ib, readfn, NULL, NULL, NULL); 190 FILE *fp = funopen(&ib, readfn, NULL, NULL, NULL);
|
/src/include/ |
stdio.h | 430 FILE *funopen(const void *, 442 #define fropen(cookie, fn) funopen(cookie, fn, 0, 0, 0) 443 #define fwopen(cookie, fn) funopen(cookie, 0, fn, 0, 0)
|
/src/usr.bin/compress/ |
zopen.c | 692 return (funopen(zs, zread, NULL, NULL, zclose)); 695 return (funopen(zs, NULL, zwrite, NULL, zclose));
|
/src/usr.bin/gzip/ |
zuncompress.c | 202 return funopen(zs, zread, NULL, NULL, zclose);
|
/src/share/examples/refuse/ian/libfetch/ |
ftp.c | 612 f = funopen(io, _ftp_readfn, _ftp_writefn, _ftp_seekfn, _ftp_closefn);
|
http.c | 324 f = funopen(io, _http_readfn, _http_writefn, NULL, _http_closefn);
|
/src/usr.sbin/mountd/ |
mountd.c | 297 return funopen((void *)(uintptr_t)fd,
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_common_interceptors.inc | 9234 INTERCEPTOR(__sanitizer_FILE *, funopen, void *cookie, funopen_readfn readfn, 9238 COMMON_INTERCEPTOR_ENTER(ctx, funopen, cookie, readfn, writefn, seekfn, 9250 REAL(funopen)(wrapped_cookie, 9259 #define INIT_FUNOPEN COMMON_INTERCEPT_FUNCTION(funopen)
|