Searched refs:stack_trace (Results 1 - 25 of 63) sorted by relevance

123

/external/chromium_org/media/filters/
H A Dvideo_frame_scheduler_unittest.cc6 #include "base/debug/stack_trace.h"
19 static void CheckForReentrancy(std::string* stack_trace, argument
22 *stack_trace = base::debug::StackTrace().ToString();
61 std::string stack_trace; local
63 frame, base::TimeTicks(), base::Bind(&CheckForReentrancy, &stack_trace));
64 EXPECT_TRUE(stack_trace.empty()) << "Reentracy detected:\n" << stack_trace;
/external/chromium_org/extensions/renderer/
H A Dextensions_render_frame_observer.cc23 // 1. WebKit gives us a stack trace in |stack_trace|.
25 // script. This will be more useful than |stack_trace|, since |stack_trace|
34 const base::string16& stack_trace,
47 } else if (!stack_trace.empty()) {
48 base::SplitStringUsingSubstr(stack_trace,
90 StackTrace stack_trace = GetStackTraceFromMessage( local
96 routing_id(), trimmed_message, source, stack_trace, severity_level));
31 GetStackTraceFromMessage( base::string16* message, const base::string16& source, const base::string16& stack_trace, int32 line_number) argument
H A Dlogging_native_handler.cc75 v8::Handle<v8::StackTrace> stack_trace = local
77 if (stack_trace.IsEmpty() || stack_trace->GetFrameCount() <= 0) {
80 for (size_t i = 0; i < (size_t)stack_trace->GetFrameCount(); ++i) {
81 v8::Handle<v8::StackFrame> frame = stack_trace->GetFrame(i);
H A Dextensions_render_frame_observer.h26 const base::string16& stack_trace,
/external/chromium_org/extensions/browser/
H A Dextension_error_test_util.cc27 StackTrace stack_trace; local
31 stack_trace.push_back(*frame);
43 stack_trace,
/external/chromium_org/testing/gtest/src/
H A Dgtest-test-part.cc52 const char* const stack_trace = strstr(message, internal::kStackTraceMarker); local
53 return stack_trace == NULL ? message :
54 std::string(message, stack_trace);
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-test-part.cc52 const char* const stack_trace = strstr(message, internal::kStackTraceMarker); local
53 return stack_trace == NULL ? internal::String(message) :
54 internal::String(message, stack_trace - message);
/external/gtest/src/
H A Dgtest-test-part.cc52 const char* const stack_trace = strstr(message, internal::kStackTraceMarker); local
53 return stack_trace == NULL ? message :
54 std::string(message, stack_trace);
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-test-part.cc52 const char* const stack_trace = strstr(message, internal::kStackTraceMarker); local
53 return stack_trace == NULL ? internal::String(message) :
54 internal::String(message, stack_trace - message);
/external/mesa3d/src/gtest/src/
H A Dgtest-test-part.cc52 const char* const stack_trace = strstr(message, internal::kStackTraceMarker); local
53 return stack_trace == NULL ? internal::String(message) :
54 internal::String(message, stack_trace - message);
/external/protobuf/gtest/src/
H A Dgtest-test-part.cc52 const char* const stack_trace = strstr(message, internal::kStackTraceMarker); local
53 return stack_trace == NULL ? internal::String(message) :
54 internal::String(message, stack_trace - message);
/external/chromium_org/net/url_request/
H A Durl_request_context.cc9 #include "base/debug/stack_trace.h"
99 base::debug::StackTrace stack_trace(NULL, 0);
100 if (request->stack_trace())
101 stack_trace = *request->stack_trace();
106 base::debug::Alias(&stack_trace);
/external/chromium_org/tools/memory_inspector/memory_inspector/core/
H A Dnative_heap.py104 stack_trace: the allocation call-site. See |stacktrace.Stacktrace|.
112 def __init__(self, size, stack_trace, start=0, flags=0, resident_size=0):
114 assert(isinstance(stack_trace, stacktrace.Stacktrace))
116 self.stack_trace = stack_trace
126 return '%d : %s' % (self.size, self.stack_trace)
H A Dnative_heap_unittest.py53 alloc1 = native_heap.Allocation(start=4, size=4, stack_trace=st1)
54 alloc2 = native_heap.Allocation(start=4090, size=8, stack_trace=st1)
55 alloc3 = native_heap.Allocation(start=8190, size=10000, stack_trace=st2)
/external/chromium_org/tools/memory_inspector/memory_inspector/data/
H A Dserialization.py105 stack_trace = stacktrace.Stacktrace()
106 for absolute_addr in alloc_dict['stack_trace']:
107 stack_trace.Add(nh.GetStackFrame(absolute_addr))
110 stack_trace=stack_trace,
H A Dfile_storage_unittest.py83 stack_trace = stacktrace.Stacktrace()
86 stack_trace.Add(frame)
89 stack_trace.Add(frame)
91 stack_trace=stack_trace,
/external/chromium_org/chrome/browser/extensions/
H A Dchrome_extension_web_contents_observer.cc52 const StackTrace& stack_trace,
69 stack_trace,
49 OnDetailedConsoleMessageAdded( const base::string16& message, const base::string16& source, const StackTrace& stack_trace, int32 severity_level) argument
H A Dchrome_extension_web_contents_observer.h43 const StackTrace& stack_trace,
/external/chromium_org/chrome/browser/extensions/error_console/
H A Derror_console_browsertest.cc44 return (static_cast<const RuntimeError*>(error))->stack_trace();
102 EXPECT_EQ(expected_stack_size, runtime_error->stack_trace().size());
457 const StackTrace& stack_trace = GetStackTraceFromError(errors[0]); local
462 CheckStackFrame(stack_trace[0], script_url, kAnonymousFunction);
493 const StackTrace& stack_trace = GetStackTraceFromError(errors[0]); local
494 ASSERT_EQ(1u, stack_trace.size());
495 CheckStackFrame(stack_trace[0],
527 const StackTrace& stack_trace = GetStackTraceFromError(errors[0]); local
528 ASSERT_EQ(1u, stack_trace.size());
529 CheckStackFrame(stack_trace[
576 const StackTrace& stack_trace = GetStackTraceFromError(errors[0]); local
[all...]
/external/chromium_org/tools/memory_inspector/memory_inspector/backends/
H A Dandroid_backend_unittest.py167 self.assertEqual(alloc.stack_trace.depth, 4)
168 self.assertEqual([x.address for x in alloc.stack_trace.frames],
172 self.assertEqual(alloc.stack_trace.depth, 3)
173 self.assertEqual([x.address for x in alloc.stack_trace.frames],
H A Dnative_heap_dump_parser.py52 stack_trace=strace_by_index[entry['s']],
/external/chromium_org/tools/memory_inspector/memory_inspector/classification/
H A Dnative_heap_classifier_unittest.py117 size=test_entry[0], stack_trace=mock_strace))
133 size=mock_alloc_size, stack_trace=mock_strace))
H A Dnative_heap_classifier.py118 for frame in alloc.stack_trace.frames[2:10]:
189 for frame in allocation.stack_trace.frames:
203 for frame in allocation.stack_trace.frames:
/external/chromium_org/remoting/webapp/browser_test/
H A Dbrowser_test.js61 result.error_message + '\n' + result.stack_trace);
76 var stack_trace = base.debug.callstack();
80 stack_trace = error.stack;
96 stack_trace: stack_trace
104 stack_trace: ''
/external/chromium_org/content/public/renderer/
H A Drender_frame_observer.h65 // internal), and |stack_trace| is the stack trace of the error in a
70 const base::string16& stack_trace,
68 DetailedConsoleMessageAdded(const base::string16& message, const base::string16& source, const base::string16& stack_trace, int32 line_number, int32 severity_level) argument

Completed in 545 milliseconds

123