/system/core/include/cutils/ |
open_memstream.h | 28 FILE* open_memstream(char** bufp, size_t* sizep);
|
/external/ltrace/ |
memstream.c | 21 /* _GNU_SOURCE may be necessary for open_memstream visibility (see 35 memstream->stream = open_memstream(&memstream->buf,
|
memstream.h | 24 * open_memstream. */
|
configure.ac | 327 # Define HAVE_OPEN_MEMSTREAM if open_memstream is available. glibc 329 # open_memstream to become visible, so check for that as well. If 333 AC_CHECK_FUNCS([open_memstream], [], 334 [AC_MSG_CHECKING([for open_memstream with _GNU_SOURCE]) 339 return open_memstream(&buf, &sz) != 0;]])], 343 [Define if open_memstream exists.])], 348 [Either open_memstream or tmpfile required.])])])])
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
open_memstream.c | 1 /* $OpenBSD: open_memstream.c,v 1.6 2015/08/31 02:53:57 guenther Exp $ */ 114 open_memstream(char **pbuf, size_t *psize) function 159 DEF_WEAK(open_memstream); variable
|
/system/core/libcutils/ |
open_memstream.c | 20 * Implementation of the POSIX open_memstream() function, which Linux has 47 #include <cutils/open_memstream.h> 223 FILE* open_memstream(char** bufp, size_t* sizep) function 265 * change to open_memstream() to use fopencookie instead: 284 stream = open_memstream(&buf, &len); 299 stream = open_memstream(&buf, &len); 321 stream = open_memstream (&buf, &len); 342 stream = open_memstream (&buf, &len);
|
Android.mk | 28 open_memstream.c \
|
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/ |
open_memstream.cc | 32 FILE *fp = open_memstream(&buf, &buf_len);
|
/external/libdrm/intel/ |
test_decode.c | 113 out = open_memstream((char **)&ptr, &size); 115 fprintf(stderr, "platform lacks open_memstream, skipping.\n");
|
/bionic/libc/ |
libc.arm64.map | 639 open_memstream;
|
libc.mips64.map | 639 open_memstream;
|
libc.x86_64.map | 639 open_memstream;
|
libc.mips.brillo.map | 691 open_memstream;
|
libc.x86.brillo.map | 689 open_memstream;
|
/bionic/libc/tools/ |
posix-2013.txt | 615 open_memstream
|
/development/ndk/platforms/android-23/arch-arm/symbols/ |
libc.so.functions.txt | 689 open_memstream
|
/development/ndk/platforms/android-23/arch-arm64/symbols/ |
libc.so.functions.txt | 624 open_memstream
|
libc.so.versions.txt | 639 open_memstream;
|
/development/ndk/platforms/android-23/arch-mips/symbols/ |
libc.so.functions.txt | 673 open_memstream
|
/development/ndk/platforms/android-23/arch-mips64/symbols/ |
libc.so.functions.txt | 624 open_memstream
|
libc.so.versions.txt | 639 open_memstream;
|
/development/ndk/platforms/android-23/arch-x86/symbols/ |
libc.so.functions.txt | 671 open_memstream
|
/development/ndk/platforms/android-23/arch-x86_64/symbols/ |
libc.so.functions.txt | 624 open_memstream
|
libc.so.versions.txt | 639 open_memstream;
|
/bionic/tests/ |
stdio_test.cpp | 847 TEST(STDIO_TEST, open_memstream) { 850 FILE* fp = open_memstream(&p, &size); 866 ASSERT_EQ(nullptr, open_memstream(nullptr, &size)); 871 ASSERT_EQ(nullptr, open_memstream(&p, nullptr)); [all...] |