Home
last modified time | relevance | path

Searched refs:warning_log (Results 1 – 4 of 4) sorted by relevance

/bionic/libc/bionic/
Dmalloc_common.cpp68 warning_log("calloc(%zu, %zu) failed: returning null pointer", n_elements, elem_size); in calloc()
113 warning_log("malloc(%zu) failed: returning null pointer", bytes); in malloc()
133 warning_log("memalign(%zu, %zu) failed: returning null pointer", alignment, bytes); in memalign()
153 warning_log("aligned_alloc(%zu, %zu) failed: returning null pointer", alignment, size); in aligned_alloc()
165 warning_log("realloc(%p, %zu) failed: returning null pointer", old_mem, bytes); in realloc()
173 warning_log("reallocaray(%p, %zu, %zu) failed: returning null pointer", in reallocarray()
189 warning_log("pvalloc(%zu) failed: returning null pointer", bytes); in pvalloc()
201 warning_log("valloc(%zu) failed: returning null pointer", bytes); in valloc()
Dmalloc_limit.cpp117 warning_log("malloc_limit: calloc(%zu, %zu) exceeds limit %" PRId64, n_elements, elem_size, in LimitCalloc()
139 warning_log("malloc_limit: malloc(%zu) exceeds limit %" PRId64, bytes, gAllocLimit); in LimitMalloc()
151 warning_log("malloc_limit: memalign(%zu, %zu) exceeds limit %" PRId64, alignment, bytes, in LimitMemalign()
164 warning_log("malloc_limit: posix_memalign(%zu, %zu) exceeds limit %" PRId64, alignment, size, in LimitPosixMemalign()
184 warning_log("malloc_limit: aligned_alloc(%zu, %zu) exceeds limit %" PRId64, alignment, size, in LimitAlignedAlloc()
200 warning_log("malloc_limit: realloc(%p, %zu) exceeds limit %" PRId64, old_mem, bytes, in LimitRealloc()
233 warning_log("malloc_limit: pvalloc(%zu) exceeds limit %" PRId64, bytes, gAllocLimit); in LimitPvalloc()
245 warning_log("malloc_limit: valloc(%zu) exceeds limit %" PRId64, bytes, gAllocLimit); in LimitValloc()
Dmalloc_common.h89 #define warning_log(format, ...) \ macro
Dmalloc_common_dynamic.cpp355 warning_log("failed to set atexit cleanup function: %d", ret_value); in FinishInstallHooks()