/system/core/include/cutils/ |
open_memstream.h | 28 FILE* open_memstream(char** bufp, size_t* sizep);
|
/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 | 41 open_memstream.c \
|
/dalvik/vm/ |
SignalCatcher.cpp | 33 #include <cutils/open_memstream.h> 159 FILE* memfp = open_memstream(&traceBuf, &traceLen);
|
Profile.cpp | 33 #include <cutils/open_memstream.h> 817 state->traceFile = open_memstream(&memStreamPtr, &memStreamSize); [all...] |
/dalvik/vm/hprof/ |
HprofOutput.cpp | 17 #include <cutils/open_memstream.h> 75 FILE* fp = open_memstream(&ctx->fileDataPtr, &ctx->fileDataSize); 78 ALOGE("hprof: open_memstream failed: %s", strerror(errno));
|
/art/runtime/hprof/ |
hprof.cc | 27 #include <cutils/open_memstream.h> 388 header_fp_ = open_memstream(&header_data_ptr_, &header_data_size_); 390 PLOG(FATAL) << "header open_memstream failed"; 393 body_fp_ = open_memstream(&body_data_ptr_, &body_data_size_); 395 PLOG(FATAL) << "body open_memstream failed"; [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
stdio.h | 300 extern FILE *open_memstream (char **__bufloc, size_t *__sizeloc) __THROW __wur;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
stdio.h | 300 extern FILE *open_memstream (char **__bufloc, size_t *__sizeloc) __THROW __wur;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
stdio.h | 300 extern FILE *open_memstream (char **__bufloc, size_t *__sizeloc) __THROW __wur;
|
/external/bison/lib/ |
getopt.c | 547 FILE *fp = open_memstream (&buf, &buflen); [all...] |