Searched refs:backtrace (Results 1 – 8 of 8) sorted by relevance
/bionic/libfdtrack/ |
D | fdtrack.cpp | 47 std::vector<unwindstack::LocalFrameData> backtrace GUARDED_BY(mutex); 74 entry.backtrace.reserve(kStackDepth); in ctor() 102 entry->backtrace.clear(); in fd_hook() 103 Unwinder().Unwind(&entry->backtrace, kStackDepth); in fd_hook() 108 entry->backtrace.clear(); in fd_hook() 129 if (entry->backtrace.empty()) { in fdtrack_iterate() 132 } else if (entry->backtrace.size() < 2) { in fdtrack_iterate() 134 entry->backtrace.size()); in fdtrack_iterate() 140 for (size_t i = kStackFrameSkip; i < entry->backtrace.size(); ++i) { in fdtrack_iterate() 142 function_names[j] = entry->backtrace[i].function_name.c_str(); in fdtrack_iterate() [all …]
|
/bionic/libc/malloc_debug/ |
D | README.md | 34 backtrace related to the allocation. Starting in P, every single realloc 35 call changes the backtrace for the pointer no matter whether the pointer 55 If the backtrace option is also enabled, then any error message will include 56 the backtrace of the allocation site. 99 ### backtrace[=MAX\_FRAMES] 100 Enable capturing the backtrace of each allocation site. 105 Note that any backtrace frames that occur within the malloc backtrace library 109 capture in a backtrace. The default is 16 frames, the maximumum value 113 the backtrace and information about the original allocation. After that, this 116 As of P, this option will also enable dumping backtrace heap data to a [all …]
|
D | README_api.md | 6 either the backtrace option or the backtrace\_enabled\_on\_signal option. 20 *backtrace\_size* is set to the maximum number of backtrace entries 38 *backtrace\_size* as returned by the original call to 42 backtrace and size as this allocation. On Android Nougat, this value was 43 incorrectly set to the number of frames in the backtrace. 45 of backtrace entries is less than *backtrace\_size*, the rest of the
|
D | README_marshmallow_and_earlier.md | 49 Enable capturing the backtrace of each allocation site. Only the 50 first 16 frames of the backtrace will be captured. 58 Note: If multiple allocations have the same exact backtrace, then only one 89 entire allocation is filled with the value 0xef, and the backtrace at 90 the time of the free is recorded. As with the backtrace on allocation,
|
D | Android.bp | 10 "backtrace.cpp",
|
/bionic/libc/malloc_debug/tests/ |
D | malloc_debug_system_tests.cpp | 557 std::unique_ptr<Backtrace> backtrace(Backtrace::Create(getpid(), tid)); in TEST() local 558 ASSERT_TRUE(backtrace->Unwind(0)) << "Failed on unwind " << i; in TEST() 559 ASSERT_LT(1, backtrace->NumFrames()) << "Failed on unwind " << i; in TEST()
|
D | malloc_debug_config_tests.cpp | 210 TEST_F(MallocDebugConfigTest, backtrace) { in TEST_F() argument
|
/bionic/docs/ |
D | fdsan.md | 174 backtrace: 215 backtrace:
|