Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/
DConfig.h67 size_t fill_on_free_bytes = 0; member
DFreeTrackData.cpp77 bytes = (bytes < debug.config().fill_on_free_bytes) ? bytes : debug.config().fill_on_free_bytes; in VerifyAndFree()
DConfig.cpp310 …Feature("fill_on_free", SIZE_MAX, 1, SIZE_MAX, FILL_ON_FREE, &this->fill_on_free_bytes, nullptr, t… in SetFromProperties()
383 if ((options & FILL_ON_FREE) && fill_on_free_bytes == 0) { in SetFromProperties()
384 fill_on_free_bytes = SIZE_MAX; in SetFromProperties()
Dmalloc_debug.cpp366 size_t fill_bytes = g_debug->config().fill_on_free_bytes; in debug_free()
/bionic/libc/malloc_debug/tests/
Dmalloc_debug_config_tests.cpp324 ASSERT_EQ(64U, config->fill_on_free_bytes); in TEST_F()
328 ASSERT_EQ(SIZE_MAX, config->fill_on_free_bytes); in TEST_F()
338 ASSERT_EQ(64U, config->fill_on_free_bytes); in TEST_F()
343 ASSERT_EQ(SIZE_MAX, config->fill_on_free_bytes); in TEST_F()
366 ASSERT_EQ(SIZE_MAX, config->fill_on_free_bytes); in TEST_F()
372 ASSERT_EQ(SIZE_MAX, config->fill_on_free_bytes); in TEST_F()
383 ASSERT_EQ(32U, config->fill_on_free_bytes); in TEST_F()
389 ASSERT_EQ(60U, config->fill_on_free_bytes); in TEST_F()