Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dmalloc_common.cpp71 warning_log("calloc(%zu, %zu) failed: returning null pointer", n_elements, elem_size); in calloc()
119 warning_log("malloc(%zu) failed: returning null pointer", bytes); in malloc()
141 warning_log("memalign(%zu, %zu) failed: returning null pointer", alignment, bytes); in memalign()
167 warning_log("aligned_alloc(%zu, %zu) failed: returning null pointer", alignment, size); in aligned_alloc()
180 warning_log("realloc(%p, %zu) failed: returning null pointer", old_mem, bytes); in realloc()
188 warning_log("reallocaray(%p, %zu, %zu) failed: returning null pointer", in reallocarray()
204 warning_log("pvalloc(%zu) failed: returning null pointer", bytes); in pvalloc()
216 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.h94 #define warning_log(format, ...) \ macro
Dmalloc_heapprofd.cpp402 warning_log("%s: heapprofd: could not transition kEphemeralHookInstalled -> " in MallocInitHeapprofdHook()
Dmalloc_common_dynamic.cpp350 warning_log("failed to set atexit cleanup function: %d", ret_value); in FinishInstallHooks()