HomeSort by relevance Sort by last modified time
    Searched refs:fill_on_free_bytes (Results 1 - 5 of 5) sorted by null

  /bionic/libc/malloc_debug/
Config.h 67 size_t fill_on_free_bytes = 0; member in struct:Config
FreeTrackData.cpp 77 bytes = (bytes < debug.config().fill_on_free_bytes) ? bytes : debug.config().fill_on_free_bytes;
Config.cpp 310 Feature("fill_on_free", SIZE_MAX, 1, SIZE_MAX, FILL_ON_FREE, &this->fill_on_free_bytes, nullptr, true),
383 if ((options & FILL_ON_FREE) && fill_on_free_bytes == 0) {
384 fill_on_free_bytes = SIZE_MAX;
malloc_debug.cpp 366 size_t fill_bytes = g_debug->config().fill_on_free_bytes;
  /bionic/libc/malloc_debug/tests/
malloc_debug_config_tests.cpp 324 ASSERT_EQ(64U, config->fill_on_free_bytes);
328 ASSERT_EQ(SIZE_MAX, config->fill_on_free_bytes);
338 ASSERT_EQ(64U, config->fill_on_free_bytes);
343 ASSERT_EQ(SIZE_MAX, config->fill_on_free_bytes);
366 ASSERT_EQ(SIZE_MAX, config->fill_on_free_bytes);
372 ASSERT_EQ(SIZE_MAX, config->fill_on_free_bytes);
383 ASSERT_EQ(32U, config->fill_on_free_bytes);
389 ASSERT_EQ(60U, config->fill_on_free_bytes);

Completed in 1033 milliseconds