HomeSort by relevance Sort by last modified time
    Searched refs:stack_trace (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/chromium_org/media/filters/
video_frame_scheduler_unittest.cc 6 #include "base/debug/stack_trace.h"
19 static void CheckForReentrancy(std::string* stack_trace,
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/
extensions_render_frame_observer.cc 23 // 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));
extensions_render_frame_observer.h 26 const base::string16& stack_trace,
logging_native_handler.cc 75 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);
  /external/chromium_org/extensions/browser/
extension_error_test_util.cc 27 StackTrace stack_trace; local
31 stack_trace.push_back(*frame);
43 stack_trace,
extension_error.h 129 const StackTrace& stack_trace,
141 const StackTrace& stack_trace() const { return stack_trace_; } function in class:extensions::RuntimeError
  /external/chromium_org/testing/gtest/src/
gtest-test-part.cc 52 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/
gtest-test-part.cc 52 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/
gtest-test-part.cc 52 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/
gtest-test-part.cc 52 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/
gtest-test-part.cc 52 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/
url_request_context.cc 9 #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/chrome/browser/extensions/
chrome_extension_web_contents_observer.h 43 const StackTrace& stack_trace,
chrome_extension_web_contents_observer.cc 52 const StackTrace& stack_trace,
69 stack_trace,
  /art/runtime/mirror/
throwable.cc 100 Object* stack_trace = GetStackTrace(); local
101 if (stack_trace != nullptr && stack_trace->IsObjectArray()) {
102 CHECK_EQ(stack_trace->GetClass()->GetComponentType(),
105 down_cast<ObjectArray<StackTraceElement>*>(stack_trace);
  /external/chromium_org/tools/memory_inspector/memory_inspector/core/
native_heap.py 104 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)
native_heap_unittest.py 53 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/chrome/browser/extensions/error_console/
error_console_browsertest.cc 44 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[0]
576 const StackTrace& stack_trace = GetStackTraceFromError(errors[0]); local
    [all...]
  /external/chromium_org/tools/memory_inspector/memory_inspector/backends/
native_heap_dump_parser.py 52 stack_trace=strace_by_index[entry['s']],
android_backend_unittest.py 167 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],
  /external/chromium_org/tools/memory_inspector/memory_inspector/data/
serialization.py 105 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,
file_storage_unittest.py 83 stack_trace = stacktrace.Stacktrace()
86 stack_trace.Add(frame)
89 stack_trace.Add(frame)
91 stack_trace=stack_trace,
  /external/chromium_org/tools/memory_inspector/memory_inspector/classification/
native_heap_classifier_unittest.py 117 size=test_entry[0], stack_trace=mock_strace))
133 size=mock_alloc_size, stack_trace=mock_strace))
  /external/chromium_org/content/public/renderer/
render_frame_observer.h 65 // internal), and |stack_trace| is the stack trace of the error in a
70 const base::string16& stack_trace,
  /art/runtime/
trace.cc 146 void Trace::FreeStackTrace(std::vector<mirror::ArtMethod*>* stack_trace) {
147 stack_trace->clear();
148 temp_stack_trace_.reset(stack_trace);
239 std::vector<mirror::ArtMethod*>* stack_trace = build_trace_visitor.GetStackTrace(); local
241 the_trace->CompareAndUpdateStackTrace(thread, stack_trace);
246 std::vector<mirror::ArtMethod*>* stack_trace = thread->GetStackTraceSample(); local
248 delete stack_trace;
252 std::vector<mirror::ArtMethod*>* stack_trace) {
256 thread->SetStackTraceSample(stack_trace);
264 for (std::vector<mirror::ArtMethod*>::reverse_iterator rit = stack_trace->rbegin()
    [all...]

Completed in 8505 milliseconds

1 2 3