Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/
DREADME.md46 If the backtrace option is also enabled, then any error message will include
47 the backtrace of the allocation site.
94 ### backtrace[=MAX\_FRAMES]
95 Enable capturing the backtrace of each allocation site.
100 Note that any backtrace frames that occur within the malloc backtrace library
104 capture in a backtrace. The default is 16 frames, the maximumum value
108 backtrace and information about the original allocation.
110 ### backtrace\_enable\_on\_signal[=MAX\_FRAMES]
111 Enable capturing the backtrace of each allocation site. If the
112 backtrace capture is toggled when the process receives the signal
[all …]
DDebugData.cpp53 backtrace.reset(new BacktraceData(config_, &pointer_offset_)); in Initialize()
54 if (!backtrace->Initialize(config_)) { in Initialize()
DDebugData.h67 return reinterpret_cast<BacktraceHeader*>(value + backtrace->alloc_offset()); in GetAllocBacktrace()
89 std::unique_ptr<BacktraceData> backtrace; variable
DREADME_api.md6 either the backtrace option or the backtrace\_enabled\_on\_signal option.
24 <i>backtrace\_size</i> is set to the maximum number of backtrace entries
48 <i>backtrace\_size</i> as returned by the original call to
DAndroid.mk22 backtrace.cpp \
Dmalloc_debug.cpp167 if (g_debug->backtrace->enabled()) { in InitHeader()
/bionic/libc/malloc_debug/tests/
Dmalloc_debug_config_tests.cpp282 TEST_F(MallocDebugConfigTest, backtrace) { in TEST_F() argument