HomeSort by relevance Sort by last modified time
    Searched full:open_memstream (Results 1 - 25 of 35) sorted by null

1 2

  /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.])])])])
  /system/core/libcutils/
open_memstream.c 20 * Implementation of the POSIX open_memstream() function, which Linux has
47 #include <cutils/open_memstream.h>
225 FILE* open_memstream(char** bufp, size_t* sizep) function
255 FILE* open_memstream(char** bufp, size_t* sizep) function
273 * change to open_memstream() to use fopencookie instead:
292 stream = open_memstream(&buf, &len);
307 stream = open_memstream(&buf, &len);
329 stream = open_memstream (&buf, &len);
350 stream = open_memstream (&buf, &len);
Android.mk 33 open_memstream.c \
  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
open_memstream.cc 31 FILE *fp = open_memstream(&buf, &buf_len);
  /art/runtime/hprof/
hprof.cc 27 #include <cutils/open_memstream.h>
404 header_fp_ = open_memstream(&header_data_ptr_, &header_data_size_);
406 PLOG(FATAL) << "header open_memstream failed";
409 body_fp_ = open_memstream(&body_data_ptr_, &body_data_size_);
411 PLOG(FATAL) << "body open_memstream failed";
    [all...]
  /build/core/combo/include/arch/darwin-x86/
AndroidConfig.h 244 * Define if the open_memstream() function exists on the system.
  /build/core/combo/include/arch/linux-arm/
AndroidConfig.h 279 * Define if the open_memstream() function exists on the system.
  /build/core/combo/include/arch/linux-arm64/
AndroidConfig.h 281 * Define if the open_memstream() function exists on the system.
  /build/core/combo/include/arch/linux-mips/
AndroidConfig.h 296 * Define if the open_memstream() function exists on the system.
  /build/core/combo/include/arch/linux-mips64/
AndroidConfig.h 293 * Define if the open_memstream() function exists on the system.
  /build/core/combo/include/arch/linux-x86/
AndroidConfig.h 259 * Define if the open_memstream() function exists on the system.
  /build/core/combo/include/arch/target_linux-x86/
AndroidConfig.h 268 * Define if the open_memstream() function exists on the system.
  /build/core/combo/include/arch/windows/
AndroidConfig.h 284 * Define if the open_memstream() function exists on the system.
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common_interceptors.inc 93 // For open_memstream().
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
stdio.h 302 extern FILE *open_memstream (char **__bufloc, size_t *__sizeloc) __THROW __wur;
wchar.h 576 /* Like OPEN_MEMSTREAM, but the stream is wide oriented and produces
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
stdio.h 302 extern FILE *open_memstream (char **__bufloc, size_t *__sizeloc) __THROW __wur;
wchar.h 576 /* Like OPEN_MEMSTREAM, but the stream is wide oriented and produces
  /external/bison/lib/
getopt.c 547 FILE *fp = open_memstream (&buf, &buflen);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/lib32/
libc-2.11.1.so 
libc.so.6 
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/lib32/
libc-2.11.1.so 

Completed in 656 milliseconds

1 2