Searched refs:fmemopen (Results 1 - 6 of 6) sorted by relevance

/freebsd-11.0-release/lib/libc/tests/stdio/
H A Dfmemopen2_test.c28 * a FILE * retrieved using fmemopen()
54 /* Open a FILE * using fmemopen. */
55 fp = fmemopen(buf, sizeof(buf), "w");
67 fp = fmemopen(buf, sizeof(buf), "r");
76 * Since a write on a FILE * retrieved by fmemopen
87 fp = fmemopen(str, 4, "w");
107 /* Let fmemopen allocate the buffer. */
113 /* Open a FILE * using fmemopen. */
114 fp = fmemopen(NULL, 512, "w+");
136 fp = fmemopen(NUL
[all...]
/freebsd-11.0-release/contrib/netbsd-tests/lib/libc/stdio/
H A Dt_fmemopen.c134 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(NUL
[all...]
/freebsd-11.0-release/lib/libc/stdio/
H A DMakefile.inc11 fileno.c findfp.c flags.c fmemopen.c fopen.c \
54 MLINKS+=fopen.3 fdopen.3 fopen.3 freopen.3 fopen.3 fmemopen.3
H A Dfmemopen.c27 __FBSDID("$FreeBSD: releng/11.0/lib/libc/stdio/fmemopen.c 289931 2015-10-25 12:09:28Z ache $");
53 fmemopen(void * __restrict buf, size_t size, const char * __restrict mode) function
/freebsd-11.0-release/include/
H A Dstdio.h354 FILE *fmemopen(void * __restrict, size_t, const char * __restrict);
/freebsd-11.0-release/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc4876 INTERCEPTOR(__sanitizer_FILE *, fmemopen, void *buf, SIZE_T size,
4879 COMMON_INTERCEPTOR_ENTER(ctx, fmemopen, buf, size, mode);
4883 __sanitizer_FILE *res = REAL(fmemopen)(buf, size, mode);
4890 COMMON_INTERCEPT_FUNCTION(fmemopen);

Completed in 177 milliseconds