Searched refs:FILL_ON_ALLOC (Results 1 – 4 of 4) sorted by relevance
/bionic/libc/malloc_debug/ |
D | Config.h | 37 constexpr uint64_t FILL_ON_ALLOC = 0x8; variable 53 constexpr uint64_t NO_HEADER_OPTIONS = FILL_ON_ALLOC | FILL_ON_FREE | EXPAND_ALLOC;
|
D | malloc_debug.cpp | 314 if (pointer != nullptr && g_debug->config().options & FILL_ON_ALLOC) { in debug_malloc() 440 if (pointer != nullptr && g_debug->config().options & FILL_ON_ALLOC) { in debug_memalign() 526 if (g_debug->config().options & FILL_ON_ALLOC) { in debug_realloc()
|
D | Config.cpp | 305 Feature("fill_on_alloc", SIZE_MAX, 1, SIZE_MAX, FILL_ON_ALLOC, &this->fill_on_alloc_bytes, in SetFromProperties()
|
/bionic/libc/malloc_debug/tests/ |
D | malloc_debug_config_tests.cpp | 310 ASSERT_EQ(FILL_ON_ALLOC, config->options); in TEST_F() 314 ASSERT_EQ(FILL_ON_ALLOC, config->options); in TEST_F() 336 ASSERT_EQ(FILL_ON_ALLOC | FILL_ON_FREE, config->options); in TEST_F() 341 ASSERT_EQ(FILL_ON_ALLOC | FILL_ON_FREE, config->options); in TEST_F()
|