Searched refs:stack_trace (Results 26 - 50 of 63) sorted by relevance

123

/external/chromium_org/extensions/browser/
H A Dextension_error.h129 const StackTrace& stack_trace,
141 const StackTrace& stack_trace() const { return stack_trace_; } function in class:extensions::RuntimeError
H A Dextension_error.cc139 const StackTrace& stack_trace,
151 stack_trace_(stack_trace),
135 RuntimeError(const std::string& extension_id, bool from_incognito, const base::string16& source, const base::string16& message, const StackTrace& stack_trace, const GURL& context_url, logging::LogSeverity level, int render_view_id, int render_process_id) argument
/external/chromium_org/mojo/services/html_viewer/
H A Dhtml_document_view.h82 const blink::WebString& stack_trace);
H A Dhtml_document_view.cc231 const blink::WebString& stack_trace) {
227 didAddMessageToConsole( const blink::WebConsoleMessage& message, const blink::WebString& source_name, unsigned source_line, const blink::WebString& stack_trace) argument
/external/chromium_org/v8/src/
H A Dmessages.js34 stack_trace: ["Stack Trace:\n", "%0"],
1070 var stack_trace = UNDEFINED;
1072 stack_trace = $Error.prepareStackTrace(obj, array);
1078 return stack_trace;
1131 var stack_trace = GET_PRIVATE(holder, stack_trace_symbol);
1132 if (IS_UNDEFINED(stack_trace)) {
1138 formatted_stack_trace = FormatStackTrace(holder, stack_trace);
H A Disolate.cc270 Handle<String> stack_trace = accumulator.ToString(this); local
273 return stack_trace;
428 Handle<JSArray> stack_trace = CaptureCurrentStackTrace( local
431 JSObject::SetProperty(error_object, key, stack_trace, STRICT).Assert();
440 Handle<Object> stack_trace = CaptureSimpleStackTrace(error_object, caller); local
441 JSObject::SetProperty(error_object, key, stack_trace, STRICT).Assert();
449 Handle<JSArray> stack_trace = factory()->NewJSArray(frame_limit); local
548 FixedArray::cast(stack_trace->elements())->set(frames_seen, *stack_frame);
554 stack_trace->set_length(Smi::FromInt(frames_seen));
555 return stack_trace;
[all...]
H A Dd8.cc623 v8::String::Utf8Value stack_trace(try_catch->StackTrace());
624 if (stack_trace.length() > 0) {
625 const char* stack_trace_string = ToCString(stack_trace);
/external/chromium_org/v8/samples/
H A Dshell.cc387 v8::String::Utf8Value stack_trace(try_catch->StackTrace());
388 if (stack_trace.length() > 0) {
389 const char* stack_trace_string = ToCString(stack_trace);
/external/chromium_org/chrome/browser/extensions/
H A Dtab_helper.h179 const StackTrace& stack_trace,
H A Dtab_helper.cc419 const StackTrace& stack_trace,
429 stack_trace,
416 OnDetailedConsoleMessageAdded( const base::string16& message, const base::string16& source, const StackTrace& stack_trace, int32 severity_level) argument
/external/chromium_org/content/shell/renderer/test_runner/
H A Dweb_frame_test_proxy.h46 const blink::WebString& stack_trace) {
49 message, source_name, source_line, stack_trace);
43 didAddMessageToConsole(const blink::WebConsoleMessage& message, const blink::WebString& source_name, unsigned source_line, const blink::WebString& stack_trace) argument
/external/chromium_org/net/url_request/
H A Durl_request.h663 void set_stack_trace(const base::debug::StackTrace& stack_trace);
664 const base::debug::StackTrace* stack_trace() const;
H A Durl_request.cc11 #include "base/debug/stack_trace.h"
1223 void URLRequest::set_stack_trace(const base::debug::StackTrace& stack_trace) { argument
1226 *stack_trace_copy = stack_trace;
1230 const base::debug::StackTrace* URLRequest::stack_trace() const { function in class:net::URLRequest
/external/compiler-rt/lib/asan/
H A Dasan_report.cc535 const uptr *stack_trace = StackDepotGet(context->stack_id, &stack_size); local
536 StackTrace::PrintStack(stack_trace, stack_size);
776 const uptr *stack_trace = StackDepotGet(stack_id1, &stack_size); local
777 StackTrace::PrintStack(stack_trace, stack_size);
779 stack_trace = StackDepotGet(stack_id2, &stack_size);
780 StackTrace::PrintStack(stack_trace, stack_size);
/external/chromium_org/chrome/test/remoting/
H A Dremote_desktop_browsertest.cc697 std::string stack_trace; local
702 ASSERT_TRUE(dict_value->GetString("stack_trace", &stack_trace));
704 EXPECT_TRUE(succeeded) << error_message << "\n" << stack_trace; local
/external/chromium_org/extensions/renderer/
H A Dmodule_system.cc77 std::string stack_trace = "<stack trace unavailable>"; variable
81 stack_trace.assign(*stack_value, stack_value.length());
83 stack_trace = "<could not convert stack trace to string>";
85 Fatal(context_, CreateExceptionString(try_catch) + "{" + stack_trace + "}");
/external/chromium_org/base/debug/
H A Dstack_trace_posix.cc5 #include "base/debug/stack_trace.h"
460 StackTrace stack_trace; local
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/
H A Dwww_server.py593 for frame in alloc.stack_trace.frames:
/external/chromium_org/base/
H A Dbase.target.darwin-arm.mk87 base/debug/stack_trace.cc \
H A Dbase.target.darwin-arm64.mk87 base/debug/stack_trace.cc \
H A Dbase.target.darwin-mips.mk87 base/debug/stack_trace.cc \
H A Dbase.target.darwin-mips64.mk87 base/debug/stack_trace.cc \
H A Dbase.target.darwin-x86.mk88 base/debug/stack_trace.cc \
H A Dbase.target.darwin-x86_64.mk88 base/debug/stack_trace.cc \
H A Dbase.target.linux-arm.mk87 base/debug/stack_trace.cc \

Completed in 1183 milliseconds

123