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

/external/chromium/android/
H A Dexecinfo.h4 int backtrace(void **array, int size) { return 0; } function
/external/chromium/base/
H A Dcompat_execinfo.h22 extern int backtrace(void**, int) __attribute__((weak_import));
H A Dlogging_win.cc86 void* backtrace[kMaxBacktraceDepth]; local
87 DWORD depth = CaptureStackBackTrace(2, kMaxBacktraceDepth, backtrace, NULL);
91 event.SetField(1, sizeof(backtrace[0]) * depth, &backtrace);
H A Ddebug_util_posix.cc96 // Gets the backtrace as a vector of strings. If possible, resolve symbol
245 if (backtrace == NULL) {
250 // Though the backtrace API man page does not list any possible negative
252 count_ = std::max(backtrace(trace_, arraysize(trace_)), 0);
277 (*os) << "Unable get symbols for backtrace (" << safe_strerror(errno)
/external/v8/test/mjsunit/regress/
H A Dregress-1081309.js32 // Make sure that the backtrace command can be processed when the receiver is
67 // The expected backtrace is
74 // Get the backtrace.
76 json = '{"seq":0,"type":"request","command":"backtrace"}'
78 var backtrace = response.body();
79 assertEquals(2, backtrace.totalFrames);
80 assertEquals(2, backtrace.frames.length);
82 assertEquals("g", response.lookup(backtrace.frames[0].func.ref).name);
83 assertEquals("", response.lookup(backtrace.frames[1].func.ref).name);
100 // Break on the exception to do a backtrace wit
[all...]
/external/v8/test/mjsunit/
H A Ddebug-backtrace.js85 // The expected backtrace is
92 var backtrace;
100 // Get the backtrace.
102 json = '{"seq":0,"type":"request","command":"backtrace"}'
105 backtrace = response.body();
106 assertEquals(0, backtrace.fromFrame);
107 assertEquals(4, backtrace.toFrame);
108 assertEquals(4, backtrace.totalFrames);
109 var frames = backtrace.frames;
125 // Get backtrace wit
[all...]
/external/srec/srec/crec/
H A Dword_lattice.c51 WT.backtrace = MAXwtokenID; \
131 if (wtoken->backtrace != MAXwtokenID)
133 word_token* next_wtoken = &rec->word_token_array[wtoken->backtrace];
143 ASSERT(wtoken->backtrace != wtoken_index);
144 wtoken_index = wtoken->backtrace;
164 ASSERT(wtoken->backtrace != wtoken_index);
166 wtoken_index = wtoken->backtrace;
181 printf("in get backtrace wtoken %d\n", wtoken_index);
197 if (wtoken_index == wtoken->backtrace)
203 wtoken_index = wtoken->backtrace;
[all...]
H A Dpriority_q.c130 if (token1->backtrace != MAXwordID)
133 history_for_token1 += word_token_array[token1->backtrace].word * 10000;
134 history_for_token1 += word_token_array[token1->backtrace].end_time;
137 if (token2->backtrace != MAXwordID)
140 history_for_token2 += word_token_array[token2->backtrace].word * 10000;
141 history_for_token2 += word_token_array[token2->backtrace].end_time;
H A Dastar.c312 stokens for this backtrace, neither did we kill the altword_tokens. it
319 best_extend_token = word_token_array[ parp->token_index].backtrace;
353 alt_bt_token_index = alt_wtoken->backtrace;
354 bt_token_index = wtoken->backtrace;
363 alt_wtoken_bt = &word_token_array[ alt_wtoken->backtrace];
364 wtoken_bt = &word_token_array[ wtoken->backtrace];
397 if (wtoken->backtrace == MAXwtokenID)
506 /* BKWD: rec->word_token_array[ wtoken->backtrace].cost + acc[] */
507 /* FRWD: wtoken->cost + acc[] - rec->word_token_array[ wtoken->backtrace].cost + acc[] */
510 if (wtoken->backtrace
[all...]
H A Dsrec.c671 /*this function allocates a new word token and remembers it in a list in the srec structure (to be used for backtrace later on*/
756 wtoken->backtrace = word_backtrace;
781 But, we didn't kill it's word backtrace, so there may be word tokens
782 in the backtrace which cannot connect. But we can't really kill
783 the whole backtrace since it might be shared with other
931 /* 20030920, for sure the backtrace will change! */
1372 /* this is a hack for preferring the shorter of the backtrace words
2381 if (wtoken->backtrace != MAXwtokenID)
2383 next_wtoken = &rec->word_token_array[wtoken->backtrace];
2393 && wtoken->backtrace !
[all...]
/external/elfcopy/
H A Dfixdwarf.c60 void *backtrace[BACKTRACE_DEPTH]; member in struct:value_struct
362 int new_bt_depth = backtrace(new_bt, BACKTRACE_DEPTH);
374 symbols = backtrace_symbols(found->backtrace, found->backtrace_depth);
392 found->backtrace_depth = backtrace(found->backtrace, BACKTRACE_DEPTH);
/external/v8/src/
H A Dplatform-macos.cc63 extern int backtrace(void**, int) __attribute__((weak_import));
288 if (backtrace == NULL)
293 int frames_count = backtrace(addresses, frames_size);
H A Dplatform-freebsd.cc45 #include <execinfo.h> // backtrace, backtrace_symbols
291 int frames_count = backtrace(addresses, frames_size);
H A Dplatform-solaris.cc38 #include <execinfo.h> // backtrace(), backtrace_symbols()
238 int frames_count = backtrace(addresses, frames_size);
H A Dplatform-linux.cc48 #include <execinfo.h> // backtrace, backtrace_symbols
376 // backtrace is a glibc extension.
381 int frames_count = backtrace(addresses, frames_size);
/external/srec/srec/include/
H A Dsrec.h51 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.
/external/webkit/WebKitTools/DumpRenderTree/qt/
H A Dmain.cpp79 size = backtrace(array, 256);
/external/dbus/dbus/
H A Ddbus-sysdeps-unix.c2234 * On GNU libc systems, print a crude backtrace to stderr. On other
2235 * systems, print "no backtrace support" and block for possible gdb
2247 bt_size = backtrace (bt, 500);
2262 fprintf (stderr, " D-Bus not built with -rdynamic so unable to print a backtrace\n");
2264 fprintf (stderr, " D-Bus not compiled with backtrace support so unable to print a backtrace\n");
/external/sqlite/dist/
H A Dsqlite3.c.orig12678 ** The backtrace functionality is only available with GLIBC
12681 extern int backtrace(void**,int);
12684 # define backtrace(A,B) 1
12692 ** | Title | backtrace pointers | MemBlockHdr | allocation | EndGuard |
12698 ** backtrace pointers. There is also a guard word at the end of the
12705 char nBacktraceSlots; /* Available backtrace slots */
12741 ** The number of levels of backtrace to save in new allocations.
12918 pHdr->nBacktrace = backtrace(aAddr, mem.nBacktrace+1)-1;
13021 ** Set the number of backtrace levels kept for each allocation.
[all...]
H A Dsqlite3.c12683 ** The backtrace functionality is only available with GLIBC
12686 extern int backtrace(void**,int);
12689 # define backtrace(A,B) 1 macro
12697 ** | Title | backtrace pointers | MemBlockHdr | allocation | EndGuard |
12703 ** backtrace pointers. There is also a guard word at the end of the
12710 char nBacktraceSlots; /* Available backtrace slots */
12746 ** The number of levels of backtrace to save in new allocations.
12923 pHdr->nBacktrace = backtrace(aAddr, mem.nBacktrace+1)-1;
13026 ** Set the number of backtrace levels kept for each allocation.
[all...]
/external/dbus/
H A Dconfigure23459 for ac_func in backtrace

Completed in 377 milliseconds