Home | History | Annotate | Download | only in malloc_debug

Lines Matching refs:Config

34 #include "Config.h"
72 FrontGuardData::FrontGuardData(DebugData* debug_data, const Config& config, size_t* offset)
73 : GuardData(debug_data, config.front_guard_value(), config.front_guard_bytes()) {
75 cmp_mem_.resize(config.front_guard_bytes());
76 memset(cmp_mem_.data(), config.front_guard_value(), cmp_mem_.size());
79 *offset += config.front_guard_bytes();
90 RearGuardData::RearGuardData(DebugData* debug_data, const Config& config)
91 : GuardData(debug_data, config.rear_guard_value(), config.rear_guard_bytes()) {}