Home
last modified time | relevance | path

Searched refs:fill_on_alloc_bytes (Results 1 – 3 of 3) sorted by relevance

/aosp12/bionic/libc/malloc_debug/tests/
H A Dmalloc_debug_config_tests.cpp339 ASSERT_EQ(64U, config->fill_on_alloc_bytes()); in TEST_F()
343 ASSERT_EQ(SIZE_MAX, config->fill_on_alloc_bytes()); in TEST_F()
365 ASSERT_EQ(64U, config->fill_on_alloc_bytes()); in TEST_F()
370 ASSERT_EQ(SIZE_MAX, config->fill_on_alloc_bytes()); in TEST_F()
/aosp12/bionic/libc/malloc_debug/
H A Dmalloc_debug.cpp460 size_t fill_bytes = g_debug->config().fill_on_alloc_bytes(); in InternalMalloc()
631 size_t fill_bytes = g_debug->config().fill_on_alloc_bytes(); in debug_memalign()
748 if (bytes > g_debug->config().fill_on_alloc_bytes()) { in debug_realloc()
749 bytes = g_debug->config().fill_on_alloc_bytes(); in debug_realloc()
H A DConfig.h87 size_t fill_on_alloc_bytes() const { return fill_on_alloc_bytes_; } in fill_on_alloc_bytes() function