Home
last modified time | relevance | path

Searched refs:LocalUnwinder (Results 1 – 8 of 8) sorted by relevance

/aosp12/system/unwinding/libunwindstack/include/unwindstack/
H A DLocalUnwinder.h59 class LocalUnwinder {
61 LocalUnwinder() = default;
62 LocalUnwinder(const std::vector<std::string>& skip_libraries) : skip_libraries_(skip_libraries) {} in LocalUnwinder() function
63 ~LocalUnwinder() = default;
/aosp12/system/unwinding/libunwindstack/tests/
H A DLocalUnwinderTest.cpp35 static LocalUnwinder* g_unwinder;
90 extern "C" void LocalInnerFunction(LocalUnwinder* unwinder, bool unwind_through_signal) { in LocalInnerFunction()
128 extern "C" void LocalMiddleFunction(LocalUnwinder* unwinder, bool unwind_through_signal) { in LocalMiddleFunction()
132 extern "C" void LocalOuterFunction(LocalUnwinder* unwinder, bool unwind_through_signal) { in LocalOuterFunction()
139 unwinder_.reset(new LocalUnwinder); in SetUp()
143 std::unique_ptr<LocalUnwinder> unwinder_;
H A DTestLocal.cpp22 unwindstack::LocalUnwinder* unwinder = in TestlibLevel4()
23 reinterpret_cast<unwindstack::LocalUnwinder*>(unwinder_data); in TestlibLevel4()
/aosp12/system/unwinding/libunwindstack/
H A DLocalUnwinder.cpp46 bool LocalUnwinder::Init() { in Init()
61 bool LocalUnwinder::ShouldSkipLibrary(const std::string& map_name) { in ShouldSkipLibrary()
70 bool LocalUnwinder::Unwind(std::vector<LocalFrameData>* frame_info, size_t max_frames) { in Unwind()
H A DAndroid.bp77 "LocalUnwinder.cpp",
/aosp12/bionic/libc/malloc_debug/
H A DUnwindBacktrace.cpp55 static unwindstack::LocalUnwinder* g_unwinder;
64 g_unwinder = new unwindstack::LocalUnwinder(skip_libraries); in Setup()
/aosp12/system/unwinding/libunwindstack/benchmarks/
H A Dlocal_unwind_benchmarks.cpp79 unwindstack::LocalUnwinder* unwinder = reinterpret_cast<unwindstack::LocalUnwinder*>(unwind_ptr); in LocalUnwind()
146 unwindstack::LocalUnwinder unwinder; in BM_local_unwind_local_unwinder()
/aosp12/bionic/libfdtrack/
H A Dfdtrack.cpp71 static unwindstack::LocalUnwinder& Unwinder() { in Unwinder()
72 static android::base::NoDestructor<unwindstack::LocalUnwinder> unwinder; in Unwinder()