HomeSort by relevance Sort by last modified time
    Searched defs:backtrace (Results 1 - 16 of 16) sorted by null

  /external/chromium/android/
execinfo.cc 7 int backtrace(void **array, int size) { return 0; } function
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
call-stack.rb 52 def backtrace!
53 Call.convert_backtrace( backtrace )
  /external/chromium/base/debug/
trace_event_win.cc 80 // See whether we're to capture a backtrace.
81 void* backtrace[32]; local
85 arraysize(backtrace),
86 backtrace,
89 event.SetField(4, sizeof(backtrace[0]) * depth, backtrace);
  /external/chromium/base/
logging_win.cc 66 void* backtrace[kMaxBacktraceDepth]; local
72 depth = CaptureStackBackTrace(2, kMaxBacktraceDepth, backtrace, NULL);
80 event.SetField(1, sizeof(backtrace[0]) * depth, &backtrace);
  /system/core/debuggerd/
backtrace.c 30 #include <corkscrew/backtrace.h>
94 backtrace_frame_t backtrace[STACK_DEPTH]; local
95 ssize_t frames = unwind_backtrace_ptrace(tid, context, backtrace, 0, STACK_DEPTH);
100 get_backtrace_symbols_ptrace(context, backtrace, frames, backtrace_symbols);
103 format_backtrace_line(i, &backtrace[i], &backtrace_symbols[i],
tombstone.c 36 #include <corkscrew/backtrace.h>
235 const backtrace_frame_t* backtrace, size_t frames) { variable
240 get_backtrace_symbols_ptrace(context, backtrace, frames, backtrace_symbols);
243 format_backtrace_line(i, &backtrace[i], &backtrace_symbols[i],
299 const backtrace_frame_t* backtrace, size_t frames) {
303 if (backtrace[i].stack_top) {
319 uintptr_t sp = backtrace[first].stack_top - STACK_WORDS * sizeof(uint32_t);
325 const backtrace_frame_t* frame = &backtrace[i];
352 backtrace_frame_t backtrace[STACK_DEPTH]; local
353 ssize_t frames = unwind_backtrace_ptrace(tid, context, backtrace, 0, STACK_DEPTH)
    [all...]
  /bionic/libc/bionic/
malloc_debug_common.h 60 uintptr_t backtrace[0]; member in struct:HashEntry
malloc_debug_leak.cpp 93 static uint32_t get_hash(uintptr_t* backtrace, size_t numEntries) {
94 if (backtrace == NULL) return 0;
99 hash = (hash * 33) + (backtrace[i] >> 2);
106 uintptr_t* backtrace, size_t numEntries, size_t size) {
109 //debug_log("backtrace: %p, entry: %p entry->backtrace: %p\n",
110 // backtrace, entry, (entry != NULL) ? entry->backtrace : NULL);
116 !memcmp(backtrace, entry->backtrace, numEntries * sizeof(uintptr_t)))
275 uintptr_t backtrace[BACKTRACE_SIZE]; local
    [all...]
  /frameworks/av/media/libmedia/
MemoryLeakTrackUtil.cpp 79 intptr_t * backtrace; member in struct:android::__anon19184
110 e->backtrace = reinterpret_cast<intptr_t *>(ptr);
126 if (e1->backtrace[j] == e2->backtrace[j]) {
129 swap = e1->backtrace[j] < e2->backtrace[j];
147 for (size_t ct = 0; (ct < backtraceSize) && e->backtrace[ct]; ct++) {
151 snprintf(buffer, SIZE, "0x%08x", e->backtrace[ct]);
  /system/core/libcorkscrew/
backtrace.c 20 #include "backtrace-arch.h"
21 #include "backtrace-helper.h"
64 backtrace_frame_t* backtrace; member in struct:__anon43931
80 add_backtrace_entry(rewind_pc_arch(&state->memory, pc), state->backtrace,
87 ssize_t unwind_backtrace(backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth) {
93 state.backtrace = backtrace;
119 backtrace_frame_t* backtrace; member in struct:__anon43932
130 g_unwind_signal_state.backtrace,
141 ssize_t unwind_backtrace_thread(pid_t tid, backtrace_frame_t* backtrace,
    [all...]
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptengine/
tst_qscriptengine.cpp 662 QString backtrace = QString::fromLatin1("<anonymous>()@FooScript") + QString::number(x) + ":" + QString::number(x + 2); local
663 QCOMPARE(eng.uncaughtExceptionBacktrace().join(""), backtrace);
  /external/srec/srec/include/
srec.h 51 wtokenID word_backtrace; /* alternative backtrace, diff from path b.p.*/
106 nodeID end_node; /* for backtrace with word graph */
107 wtokenID backtrace; /* for backtrace */ member in struct:word_token_t
125 * Contains what we need for later backtrace, nbest, etc.
  /frameworks/base/core/jni/
android_os_Debug.cpp 423 * intptr_t backtrace[32]
425 * "size" is the size of the allocation, "backtrace" is a fixed-size
427 * allocations with the exact same size and backtrace.
459 fprintf(fp, "WARNING: mismatched backtrace sizes (%d vs. %d)\n",
472 intptr_t* backtrace = (intptr_t*) (ptr + sizeof(size_t) * 2); local
479 if (backtrace[bt] == 0) {
482 fprintf(fp, " %08x", backtrace[bt]);
  /system/core/libcorkscrew/arch-x86/
backtrace-x86.c 24 #include "../backtrace-arch.h"
25 #include "../backtrace-helper.h"
92 backtrace_frame_t* backtrace; member in struct:__anon43924
756 unwind_state_t* state, backtrace_frame_t* backtrace,
783 backtrace, ignore_depth, max_depth,
798 backtrace, ignore_depth, max_depth,
818 backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth) {
829 &state, backtrace, ignore_depth, max_depth);
833 backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth) {
847 &state, backtrace, ignore_depth, max_depth)
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 15494 # define backtrace macro
    [all...]
  /external/sqlite/dist/
sqlite3.c 15494 # define backtrace macro
    [all...]

Completed in 459 milliseconds