Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/tests/
Dmalloc_debug_config_tests.cpp396 ASSERT_EQ(64U, config->fill_on_free_bytes()); in TEST_F()
400 ASSERT_EQ(SIZE_MAX, config->fill_on_free_bytes()); in TEST_F()
410 ASSERT_EQ(64U, config->fill_on_free_bytes()); in TEST_F()
415 ASSERT_EQ(SIZE_MAX, config->fill_on_free_bytes()); in TEST_F()
438 ASSERT_EQ(SIZE_MAX, config->fill_on_free_bytes()); in TEST_F()
444 ASSERT_EQ(SIZE_MAX, config->fill_on_free_bytes()); in TEST_F()
455 ASSERT_EQ(32U, config->fill_on_free_bytes()); in TEST_F()
461 ASSERT_EQ(60U, config->fill_on_free_bytes()); in TEST_F()
468 ASSERT_EQ(32U, config->fill_on_free_bytes()); in TEST_F()
/bionic/libc/malloc_debug/
DConfig.h91 size_t fill_on_free_bytes() const { return fill_on_free_bytes_; } in fill_on_free_bytes() function
DPointerData.cpp338 size_t bytes = (usable_size < g_debug->config().fill_on_free_bytes()) in VerifyFreedPointer()
340 : g_debug->config().fill_on_free_bytes(); in VerifyFreedPointer()
Dmalloc_debug.cpp637 size_t fill_bytes = g_debug->config().fill_on_free_bytes(); in InternalFree()