Home
last modified time | relevance | path

Searched refs:backtrace_frames (Results 1 – 7 of 7) sorted by relevance

/bionic/libc/malloc_debug/
DBacktraceData.cpp45 size_t hdr_len = sizeof(BacktraceHeader) + sizeof(uintptr_t) * config.backtrace_frames; in BacktraceData()
DConfig.h64 size_t backtrace_frames = 0; member
DTrackData.cpp121 *backtrace_size = debug.config().backtrace_frames; in GetInfo()
DConfig.cpp295 BACKTRACE | TRACK_ALLOCS, &this->backtrace_frames, &this->backtrace_enabled, false), in SetFromProperties()
298 BACKTRACE | TRACK_ALLOCS, &this->backtrace_frames, &this->backtrace_enable_on_signal, in SetFromProperties()
Dmalloc_debug.cpp170 &back_header->frames[0], g_debug->config().backtrace_frames); in InitHeader()
/bionic/libc/malloc_debug/tests/
Dmalloc_debug_config_tests.cpp195 ASSERT_EQ(10U, config->backtrace_frames); in TEST_F()
204 ASSERT_EQ(10U, config->backtrace_frames); in TEST_F()
213 ASSERT_EQ(64U, config->backtrace_frames); in TEST_F()
222 ASSERT_EQ(64U, config->backtrace_frames); in TEST_F()
285 ASSERT_EQ(64U, config->backtrace_frames); in TEST_F()
289 ASSERT_EQ(16U, config->backtrace_frames); in TEST_F()
298 ASSERT_EQ(64U, config->backtrace_frames); in TEST_F()
302 ASSERT_EQ(16U, config->backtrace_frames); in TEST_F()
Dmalloc_debug_unit_tests.cpp74 static size_t get_tag_offset(uint32_t flags = 0, size_t backtrace_frames = 0) { in get_tag_offset() argument
77 …offset += BIONIC_ALIGN(sizeof(BacktraceHeader) + sizeof(uintptr_t) * backtrace_frames, MINIMUM_ALI… in get_tag_offset()