Searched refs:fill_on_free_bytes (Results 1 – 5 of 5) sorted by relevance
/bionic/libc/malloc_debug/ |
D | Config.h | 67 size_t fill_on_free_bytes = 0; member
|
D | FreeTrackData.cpp | 77 bytes = (bytes < debug.config().fill_on_free_bytes) ? bytes : debug.config().fill_on_free_bytes; in VerifyAndFree()
|
D | Config.cpp | 310 …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()
|
D | malloc_debug.cpp | 366 size_t fill_bytes = g_debug->config().fill_on_free_bytes; in debug_free()
|
/bionic/libc/malloc_debug/tests/ |
D | malloc_debug_config_tests.cpp | 324 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()
|