Searched defs:backtrace (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libmedia/
H A DMemoryLeakTrackUtil.cpp85 intptr_t * backtrace; member in struct:android::__anon279
116 e->backtrace = reinterpret_cast<intptr_t *>(ptr);
132 if (e1->backtrace[j] == e2->backtrace[j]) {
135 swap = e1->backtrace[j] < e2->backtrace[j];
156 for (size_t ct = 0; (ct < backtraceSize) && e->backtrace[ct]; ct++) {
160 snprintf(buffer, SIZE, "0x%08x", e->backtrace[ct]);
/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp827 * intptr_t backtrace[32]
829 * "size" is the size of the allocation, "backtrace" is a fixed-size
831 * allocations with the exact same size and backtrace.
863 fprintf(fp, "WARNING: mismatched backtrace sizes (%zu vs. %d)\n",
876 intptr_t* backtrace = (intptr_t*) (ptr + sizeof(size_t) * 2); local
883 if (backtrace[bt] == 0) {
887 fprintf(fp, " %016" PRIxPTR, backtrace[bt]);
889 fprintf(fp, " %08" PRIxPTR, backtrace[bt]);

Completed in 60 milliseconds