Searched refs:backtrace (Results 1 - 5 of 5) sorted by relevance

/frameworks/native/opengl/libs/EGL/
H A DCallStack.h20 #include <backtrace/Backtrace.h>
28 std::unique_ptr<Backtrace> backtrace(
30 if (backtrace->Unwind(2)) {
31 for (size_t i = 0, c = backtrace->NumFrames(); i < c; i++) {
33 backtrace->FormatFrameData(i).c_str());
/frameworks/av/media/utils/
H A DMemoryLeakTrackUtil.cpp78 // based on the backtrace.
83 uintptr_t backtrace[]; member in struct:android::AllocEntry
90 oss << backtrace_string(e->backtrace, backtraceSize) << "\n";
/frameworks/base/libs/hwui/tests/common/
H A DLeakChecker.cpp60 if (!merged.leaks[0].backtrace.num_frames) {
62 << endl << "and 'setprop libc.debug.malloc.options backtrace=8'"
/frameworks/rs/tests/lldb/tests/harness/
H A Dtest_base.py234 backtrace = ['[Back trace]']
237 backtrace.append(' [{0} line: {2} fn: {1}] {3}'.format(
241 log.error('\n'.join(backtrace))
/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp886 * intptr_t backtrace[32]
888 * "size" is the size of the allocation, "backtrace" is a fixed-size
890 * allocations with the exact same size and backtrace.
910 "backtrace\n");
934 uintptr_t* backtrace = (uintptr_t*) (ptr + sizeof(size_t) * 2); local
941 if (backtrace[bt] == 0) {
945 fprintf(fp, " %016" PRIxPTR, backtrace[bt]);
947 fprintf(fp, " %08" PRIxPTR, backtrace[bt]);

Completed in 154 milliseconds