Home | History | Annotate | Download | only in malloc_debug

Lines Matching full:backtrace

174   error_log("  backtrace[=XX]");
175 error_log(" Enable capturing the backtrace at the point of allocation.");
176 error_log(" If XX is set it sets the number of backtrace frames.");
181 error_log(" Enable capturing the backtrace at the point of allocation.");
182 error_log(" The backtrace capture is not enabled until the process");
183 error_log(" receives a signal. If XX is set it sets the number of backtrace");
217 error_log(" enabled, it automatically records the backtrace at the time of the free.");
224 error_log(" how many backtrace frames to capture when an allocation is freed.");
226 error_log(" is set to zero, then no backtrace will be captured.");
292 // Enable logging the backtrace on allocation. Value is the total
294 Feature("backtrace", DEFAULT_BACKTRACE_FRAMES, 1, MAX_BACKTRACE_FRAMES,
295 BACKTRACE | TRACK_ALLOCS, &this->backtrace_frames, &this->backtrace_enabled, false),
296 // Enable gathering backtrace values on a signal.
298 BACKTRACE | TRACK_ALLOCS, &this->backtrace_frames, &this->backtrace_enable_on_signal,
322 // Number of backtrace frames to keep when free_track is enabled. If this
323 // value is set to zero, no backtrace will be kept.