/external/valgrind/main/memcheck/tests/ |
deep-backtrace.vgtest | 1 prog: deep-backtrace
|
deep-backtrace.stderr.exp | 2 at 0x........: f1 (deep-backtrace.c:1) 3 by 0x........: f2 (deep-backtrace.c:2) 4 by 0x........: f3 (deep-backtrace.c:3) 5 by 0x........: f4 (deep-backtrace.c:4) 6 by 0x........: f5 (deep-backtrace.c:5) 7 by 0x........: f6 (deep-backtrace.c:6) 8 by 0x........: f7 (deep-backtrace.c:7) 9 by 0x........: f8 (deep-backtrace.c:8) 10 by 0x........: f9 (deep-backtrace.c:9) 11 by 0x........: f10 (deep-backtrace.c:10 [all...] |
/external/clang/test/Misc/ |
macro-backtrace.c | 19 // RUN: %clang_cc1 -fsyntax-only -fmacro-backtrace-limit 5 %s 2>&1 \ 21 // CHECK-LIMIT: macro-backtrace.c:18:7: warning: comparison of distinct pointer types ('int *' and 'float *') 23 // CHECK-LIMIT: macro-backtrace.c:15:19: note: expanded from macro 'M12' 25 // CHECK-LIMIT: macro-backtrace.c:14:19: note: expanded from macro 'M11' 27 // CHECK-LIMIT: note: (skipping 7 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) 28 // CHECK-LIMIT: macro-backtrace.c:6:18: note: expanded from macro 'M3' 30 // CHECK-LIMIT: macro-backtrace.c:5:18: note: expanded from macro 'M2' 32 // CHECK-LIMIT: macro-backtrace.c:4:23: note: expanded from macro 'M1' 37 // CHECK-NO-CARETS: macro-backtrace.c:18:7: warning: comparison of distinct pointer types ('int *' and 'float *' [all...] |
/external/clang/test/SemaTemplate/ |
instantiation-depth.cpp | 1 // RUN: %clang_cc1 -fsyntax-only -verify -ftemplate-depth 5 -ftemplate-backtrace-limit 4 %s 2 // RUN: %clang -fsyntax-only -Xclang -verify -ftemplate-depth-5 -ftemplate-backtrace-limit=4 %s 3 // RUN: %clang -fsyntax-only -Xclang -verify -ftemplate-depth=5 -ftemplate-backtrace-limit=4 %s 10 // expected-note {{skipping 2 contexts in backtrace}} \ 19 // RUN: %clang_cc1 -fsyntax-only -verify -ftemplate-depth 5 -ftemplate-backtrace-limit 4 -std=c++11 -DNOEXCEPT %s 27 // expected-note {{skipping 2 contexts in backtrace}} \
|
/system/core/include/corkscrew/ |
backtrace.h | 32 * Describes a single frame of a backtrace. 41 * Describes the symbols associated with a backtrace frame. 55 * Populates the backtrace array with the program counters from the call stack. 58 ssize_t unwind_backtrace(backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth); 62 * Populates the backtrace array with the program counters from the call stack. 65 * The task is briefly suspended while the backtrace is being collected. 67 ssize_t unwind_backtrace_thread(pid_t tid, backtrace_frame_t* backtrace, 72 * Populates the backtrace array with the program counters from the call stack. 76 backtrace_frame_t* backtrace, size_t ignore_depth, size_t max_depth); 79 * Gets the symbols for each frame of a backtrace [all...] |
/external/chromium/android/ |
execinfo.cc | 7 int backtrace(void **array, int size) { return 0; } function
|
execinfo.h | 8 int backtrace(void **array, int size);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/ |
prettify.rb | 34 backtrace = exception.backtrace 35 backtrace[0] += ": " + exception + " (" + exception.class.to_s + ")" 36 print "<pre>\n", WEBrick::HTMLUtils::escape(backtrace.join(BACKTRACE_SEPARATOR)), "\n</pre>\n"
|
/external/valgrind/main/none/tests/ |
vgprintf.c | 12 x = VALGRIND_PRINTF_BACKTRACE("Backtrace line one\nLine two:\n");
|
vgprintf.stderr.exp | 4 Backtrace line one
|
/system/core/libcorkscrew/ |
backtrace-helper.h | 17 /* Backtrace helper functions. */ 22 #include <corkscrew/backtrace.h> 31 * Add a program counter to a backtrace if it will fit. 35 backtrace_frame_t* backtrace,
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-1081309.js | 32 // 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 with undefined as receiver [all...] |
/external/v8/test/mjsunit/regress/ |
regress-1081309.js | 32 // 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 with undefined as receiver [all...] |
/external/chromium_org/v8/test/mjsunit/ |
debug-backtrace.js | 85 // 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 with two frames [all...] |
/external/v8/test/mjsunit/ |
debug-backtrace.js | 85 // 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 with two frames [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_debug_stack.c | 41 debug_backtrace_capture(struct debug_stack_frame *backtrace, 76 backtrace[i++].function = frame_pointer[1]; 94 backtrace[i++].function = NULL; 101 debug_backtrace_dump(const struct debug_stack_frame *backtrace, 107 if(!backtrace[i].function) 109 debug_symbol_print(backtrace[i].function);
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_debug_stack.c | 41 debug_backtrace_capture(struct debug_stack_frame *backtrace, 76 backtrace[i++].function = frame_pointer[1]; 94 backtrace[i++].function = NULL; 101 debug_backtrace_dump(const struct debug_stack_frame *backtrace, 107 if(!backtrace[i].function) 109 debug_symbol_print(backtrace[i].function);
|
/frameworks/av/media/libmedia/ |
MemoryLeakTrackUtil.cpp | 79 intptr_t * backtrace; member in struct:android::__anon32254 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]);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/ |
libxcb-xlib.so.0 | |
libxcb-xlib.so.0.0 | |
libxcb-xlib.so.0.0.0 | |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/ |
libxcb-xlib.so.0 | |
libxcb-xlib.so.0.0 | |
libxcb-xlib.so.0.0.0 | |
/system/extras/tests/memtest/ |
thumb.cpp | 26 _Unwind_Backtrace(trace_function, (void*)"backtrace!");
|