Home
last modified time | relevance | path

Searched refs:V8StackTraceImpl (Results 1 – 13 of 13) sorted by relevance

/external/v8/src/inspector/
Dv8-stack-trace-impl.cc24 V8StackTraceImpl::Frame toFrame(v8::Local<v8::StackFrame> frame, in toFrame()
45 return V8StackTraceImpl::Frame(functionName, scriptId, sourceName, in toFrame()
50 std::vector<V8StackTraceImpl::Frame>& frames, in toFramesVector()
67 V8StackTraceImpl::Frame::Frame() in Frame()
74 V8StackTraceImpl::Frame::Frame(const String16& functionName, in Frame()
87 V8StackTraceImpl::Frame::~Frame() {} in ~Frame()
93 V8StackTraceImpl::Frame::buildInspectorObject() const { in buildInspectorObject()
103 V8StackTraceImpl::Frame V8StackTraceImpl::Frame::clone() const { in clone()
109 void V8StackTraceImpl::setCaptureStackTraceForUncaughtExceptions( in setCaptureStackTraceForUncaughtExceptions()
112 capture, V8StackTraceImpl::maxCallStackSizeToCapture, stackTraceOptions); in setCaptureStackTraceForUncaughtExceptions()
[all …]
Dv8-stack-trace-impl.h25 class V8StackTraceImpl final : public V8StackTrace {
44 friend class V8StackTraceImpl;
57 static std::unique_ptr<V8StackTraceImpl> create(
60 static std::unique_ptr<V8StackTraceImpl> capture(
66 std::unique_ptr<V8StackTraceImpl> cloneImpl();
71 ~V8StackTraceImpl() override;
84 void setCreation(std::unique_ptr<V8StackTraceImpl> creation);
87 V8StackTraceImpl(int contextGroupId, const String16& description,
89 std::unique_ptr<V8StackTraceImpl> parent);
94 std::unique_ptr<V8StackTraceImpl> m_parent;
[all …]
Dv8-console-message.h19 class V8StackTraceImpl; variable
49 std::unique_ptr<V8StackTraceImpl>, InspectedContext*);
54 std::unique_ptr<V8StackTraceImpl>, int scriptId, v8::Isolate*,
81 unsigned columnNumber, std::unique_ptr<V8StackTraceImpl>,
90 std::unique_ptr<V8StackTraceImpl> m_stackTrace;
Dv8-debugger.h25 class V8StackTraceImpl; variable
72 V8StackTraceImpl* currentAsyncCallChain();
74 std::unique_ptr<V8StackTraceImpl> createStackTrace(v8::Local<v8::StackTrace>);
75 std::unique_ptr<V8StackTraceImpl> captureStackTrace(bool fullStack);
161 protocol::HashMap<void*, std::unique_ptr<V8StackTraceImpl>>;
171 std::vector<std::unique_ptr<V8StackTraceImpl>> m_currentStacks;
Dv8-debugger.cc661 V8StackTraceImpl* V8Debugger::currentAsyncCallChain() { in currentAsyncCallChain()
803 std::unique_ptr<V8StackTraceImpl> V8Debugger::createStackTrace( in createStackTrace()
809 return V8StackTraceImpl::create(this, contextGroupId, stackTrace, in createStackTrace()
810 V8StackTraceImpl::maxCallStackSizeToCapture); in createStackTrace()
850 std::unique_ptr<V8StackTraceImpl> creationStack = in asyncTaskCreated()
851 V8StackTraceImpl::capture(this, 0, 1, String16()); in asyncTaskCreated()
872 std::unique_ptr<V8StackTraceImpl> chain = V8StackTraceImpl::capture( in asyncTaskScheduled()
873 this, contextGroupId, V8StackTraceImpl::maxCallStackSizeToCapture, in asyncTaskScheduled()
907 std::unique_ptr<V8StackTraceImpl> stack; in asyncTaskStarted()
952 std::unique_ptr<V8StackTraceImpl> V8Debugger::captureStackTrace( in captureStackTrace()
[all …]
Dv8-inspector-impl.cc167 V8StackTraceImpl::setCaptureStackTraceForUncaughtExceptions(m_isolate, in enableStackCapturingIfNeeded()
174 V8StackTraceImpl::setCaptureStackTraceForUncaughtExceptions(m_isolate, in disableStackCapturingIfNeeded()
322 std::unique_ptr<V8StackTraceImpl> stackTraceImpl( in exceptionThrown()
323 static_cast<V8StackTraceImpl*>(stackTrace.release())); in exceptionThrown()
Dv8-console-message.cc196 std::unique_ptr<V8StackTraceImpl> stackTrace, in setLocation()
358 std::unique_ptr<V8StackTraceImpl> stackTrace, in createForConsoleAPI()
412 std::unique_ptr<V8StackTraceImpl> stackTrace, int scriptId, in createForException()
Dv8-inspector-impl.h50 class V8StackTraceImpl; variable
Dv8-debugger-agent-impl.h26 class V8StackTraceImpl; variable
Dv8-profiler-agent-impl.cc129 std::unique_ptr<V8StackTraceImpl> callStack = in currentDebugLocation()
Dv8-console.cc355 std::unique_ptr<V8StackTraceImpl> stackTrace = in countCallback()
356 V8StackTraceImpl::capture(nullptr, 0, 1); in countCallback()
Dv8-runtime-agent-impl.cc137 std::unique_ptr<V8StackTraceImpl> stack = in catchCallback()
Dv8-debugger-agent-impl.cc985 V8StackTraceImpl* stackTrace = m_debugger->currentAsyncCallChain(); in currentAsyncStackTrace()