Home
last modified time | relevance | path

Searched refs:open_memstream (Results 1 – 5 of 5) sorted by relevance

/tinycbor-2.7.6/
DMakefile.configure1 ALLTESTS = open_memstream funopen fopencookie gc_sections \
6 PROGRAM-open_memstream = extern int open_memstream(); int main() { return open_memstream(); } function
DMakefile102 ifeq ($(open_memstream-pass),)
105 …$(warning warning: funopen and fopencookie unavailable, open_memstream can not be implemented and …
107 TINYCBOR_SOURCES += src/open_memstream.c
/tinycbor-2.7.6/src/
Dopen_memstream.c93 FILE *open_memstream(char **bufptr, size_t *lenptr) in open_memstream() function
Dcbortojson.c154 extern FILE *open_memstream(char **bufptr, size_t *sizeptr);
415 FILE *memstream = open_memstream(key, &size); in stringify_map_key()
/tinycbor-2.7.6/tests/tojson/
Dtst_tojson.cpp30 extern "C" FILE *open_memstream(char **bufptr, size_t *sizeptr);
203 FILE *f = open_memstream(&buffer, &size); in parseOne()