Symbol: fmemopen
include/stdio.h
379
FILE *fmemopen(void * __restrict, size_t, const char * __restrict);
lib/libc/tests/net/getaddrinfo/getaddrinfo.c
61
return (fmemopen(resconf, strlen(resconf), mode));
lib/libc/tests/secure/fortify_poll_test.c
41
fp = fmemopen(fpbuf, sizeof(fpbuf), "rb");
lib/libc/tests/secure/fortify_random_test.c
41
fp = fmemopen(fpbuf, sizeof(fpbuf), "rb");
lib/libc/tests/secure/fortify_select_test.c
41
fp = fmemopen(fpbuf, sizeof(fpbuf), "rb");
lib/libc/tests/secure/fortify_signal_test.c
41
fp = fmemopen(fpbuf, sizeof(fpbuf), "rb");
lib/libc/tests/secure/fortify_socket_test.c
41
fp = fmemopen(fpbuf, sizeof(fpbuf), "rb");
lib/libc/tests/secure/fortify_stdio_test.c
41
fp = fmemopen(fpbuf, sizeof(fpbuf), "rb");
lib/libc/tests/secure/fortify_stdlib_test.c
41
fp = fmemopen(fpbuf, sizeof(fpbuf), "rb");
lib/libc/tests/secure/fortify_string_test.c
41
fp = fmemopen(fpbuf, sizeof(fpbuf), "rb");
lib/libc/tests/secure/fortify_strings_test.c
41
fp = fmemopen(fpbuf, sizeof(fpbuf), "rb");
lib/libc/tests/secure/fortify_uio_test.c
41
fp = fmemopen(fpbuf, sizeof(fpbuf), "rb");
lib/libc/tests/secure/fortify_unistd_test.c
41
fp = fmemopen(fpbuf, sizeof(fpbuf), "rb");
lib/libc/tests/secure/fortify_wchar_test.c
41
fp = fmemopen(fpbuf, sizeof(fpbuf), "rb");
lib/libc/tests/stdio/fmemopen2_test.c
111
fp = fmemopen(NULL, 512, "w+");
lib/libc/tests/stdio/fmemopen2_test.c
133
fp = fmemopen(NULL, 512, "r");
lib/libc/tests/stdio/fmemopen2_test.c
137
fp = fmemopen(NULL, 512, "w");
lib/libc/tests/stdio/fmemopen2_test.c
160
fp = fmemopen(buf, sizeof(buf), "w+");
lib/libc/tests/stdio/fmemopen2_test.c
178
fp = fmemopen(buf, sizeof(buf), "a+");
lib/libc/tests/stdio/fmemopen2_test.c
224
fp = fmemopen(buf, sizeof(buf), "w+b");
lib/libc/tests/stdio/fmemopen2_test.c
251
fp = fmemopen(NULL, 16, "ab+");
lib/libc/tests/stdio/fmemopen2_test.c
258
fp = fmemopen(buf, sizeof(buf), "ab+");
lib/libc/tests/stdio/fmemopen2_test.c
271
fp = fmemopen(NULL, 0, "r+");
lib/libc/tests/stdio/fmemopen2_test.c
290
fp = fmemopen(buf, sizeof(buf), "r");
lib/libc/tests/stdio/fmemopen2_test.c
298
fp = fmemopen(buf_orig, sizeof(buf), "w");
lib/libc/tests/stdio/fmemopen2_test.c
52
fp = fmemopen(buf, sizeof(buf), "w");
lib/libc/tests/stdio/fmemopen2_test.c
64
fp = fmemopen(buf, sizeof(buf), "r");
lib/libc/tests/stdio/fmemopen2_test.c
84
fp = fmemopen(str, 4, "w");
sbin/setkey/setkey.c
144
fp = fmemopen(optarg, strlen(optarg), "r");
tests/sys/audit/utils.c
65
ATF_REQUIRE((memstream = fmemopen(membuff, size, "w")) != NULL);
tests/sys/file/closefrom_test.c
68
fp = fmemopen(shared_page, PAGE_SIZE - 1, "w");