Home
last modified time | relevance | path

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

/third_party/pcre2/pcre2/src/
Dpcre2_context.c56 static void *default_malloc(size_t size, void *data) in default_malloc() function
95 newmemctl->malloc = default_malloc; in PRIV()
119 if (private_malloc == NULL) private_malloc = default_malloc; in pcre2_general_context_create()
134 { default_malloc, default_free, NULL }, /* Default memory handling */
164 { default_malloc, default_free, NULL },
198 { default_malloc, default_free, NULL }, /* Default memory handling */
/third_party/node/deps/nghttp2/lib/
Dnghttp2_mem.c27 static void *default_malloc(size_t size, void *mem_user_data) { in default_malloc() function
51 static nghttp2_mem mem_default = {NULL, default_malloc, default_free,
/third_party/nghttp2/lib/
Dnghttp2_mem.c27 static void *default_malloc(size_t size, void *mem_user_data) { in default_malloc() function
51 static nghttp2_mem mem_default = {NULL, default_malloc, default_free,
/third_party/node/deps/cares/src/lib/
Dares_library_init.c48 static void *default_malloc(size_t size) { if (size == 0) { return NULL; } return malloc(size); } in default_malloc() function
58 void *(*ares_malloc)(size_t size) = default_malloc;
/third_party/node/deps/uvwasi/src/
Duvwasi.c109 static void* default_malloc(size_t size, void* mem_user_data) { in default_malloc() function
147 default_malloc,