/src/tests/lib/libc/stdio/ |
t_fmemopen.c | 134 fp = fmemopen(&buf[0], sizeof(buf), *p); 136 * Upon successful completion, fmemopen() shall return a pointer to the 163 * If a null pointer is specified as the buf argument, fmemopen() shall 166 fp = fmemopen(NULL, BUFSIZ, *p); 193 fp = fmemopen(&buf[0], sizeof(buf), *p); 229 fp = fmemopen(&buf[0], sizeof(buf), *p); 266 fp = fmemopen(&buf[0], sizeof(buf), *p); 309 fp = fmemopen(NULL, (size_t)0, *p); 314 fp = fmemopen((void *)&buf[0], 0, *p); 335 fp = fmemopen(NULL, 1, *p) [all...] |
/src/usr.bin/xlint/lint1/ |
main1.c | 121 return fmemopen(__UNCONST(builtins), builtins_len, "r");
|
/src/lib/libc/stdio/ |
Makefile.inc | 22 SRCS+= fmemopen.c open_memstream.c open_wmemstream.c 29 flockfile.3 fmemopen.3 fopen.3 fparseln.3 fputs.3 fputws.3 fread.3 \
|
fmemopen.c | 1 /* $NetBSD: fmemopen.c,v 1.8 2012/03/29 14:27:33 christos Exp $ */ 32 __RCSID("$NetBSD: fmemopen.c,v 1.8 2012/03/29 14:27:33 christos Exp $"); 172 fmemopen(void * __restrict buf, size_t size, const char * __restrict mode) function in typeref:typename:FILE *
|
/src/include/ |
stdio.h | 531 FILE *fmemopen(void * __restrict, size_t, const char * __restrict);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_common_interceptors.inc | 5859 INTERCEPTOR(__sanitizer_FILE *, fmemopen, void *buf, SIZE_T size, 5862 COMMON_INTERCEPTOR_ENTER(ctx, fmemopen, buf, size, mode); 5866 __sanitizer_FILE *res = REAL(fmemopen)(buf, size, mode); 5873 COMMON_INTERCEPT_FUNCTION(fmemopen);
|