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.cc20 int V8StackTraceImpl::maxCallStackSizeToCapture = 200;
226 void V8StackTraceImpl::setCaptureStackTraceForUncaughtExceptions( in setCaptureStackTraceForUncaughtExceptions()
229 capture, V8StackTraceImpl::maxCallStackSizeToCapture); in setCaptureStackTraceForUncaughtExceptions()
233 std::unique_ptr<V8StackTraceImpl> V8StackTraceImpl::create( in create()
253 return std::unique_ptr<V8StackTraceImpl>(new V8StackTraceImpl( in create()
258 std::unique_ptr<V8StackTraceImpl> V8StackTraceImpl::capture( in capture()
272 return V8StackTraceImpl::create(debugger, contextGroupId, v8StackTrace, in capture()
276 V8StackTraceImpl::V8StackTraceImpl( in V8StackTraceImpl() function in v8_inspector::V8StackTraceImpl
285 V8StackTraceImpl::~V8StackTraceImpl() = default;
287 std::unique_ptr<V8StackTrace> V8StackTraceImpl::clone() { in clone()
[all …]
Dv8-stack-trace-impl.h46 class V8StackTraceImpl : public V8StackTrace {
51 static std::unique_ptr<V8StackTraceImpl> create(V8Debugger*,
55 static std::unique_ptr<V8StackTraceImpl> capture(V8Debugger*,
59 ~V8StackTraceImpl() override;
82 bool isEqualIgnoringTopFrame(V8StackTraceImpl* stackTrace) const;
85 V8StackTraceImpl(std::vector<std::shared_ptr<StackFrame>> frames,
92 explicit StackFrameIterator(const V8StackTraceImpl* stackTrace);
109 DISALLOW_COPY_AND_ASSIGN(V8StackTraceImpl);
Dv8-console-message.h23 class V8StackTraceImpl; variable
54 const String16& consoleContext, std::unique_ptr<V8StackTraceImpl>);
59 std::unique_ptr<V8StackTraceImpl>, int scriptId, v8::Isolate*,
86 unsigned columnNumber, std::unique_ptr<V8StackTraceImpl>,
95 std::unique_ptr<V8StackTraceImpl> m_stackTrace;
Dv8-debugger.h30 class V8StackTraceImpl; variable
116 std::unique_ptr<V8StackTraceImpl> createStackTrace(v8::Local<v8::StackTrace>);
117 std::unique_ptr<V8StackTraceImpl> captureStackTrace(bool fullStack);
234 std::unique_ptr<V8StackTraceImpl> m_continueToLocationStack;
Dv8-debugger.cc408 std::unique_ptr<V8StackTraceImpl> currentStack = captureStackTrace(true); in shouldContinueToCurrentLocation()
827 std::unique_ptr<V8StackTraceImpl> V8Debugger::createStackTrace( in createStackTrace()
829 return V8StackTraceImpl::create(this, currentContextGroupId(), v8StackTrace, in createStackTrace()
830 V8StackTraceImpl::maxCallStackSizeToCapture); in createStackTrace()
873 V8StackTraceImpl::maxCallStackSizeToCapture); in storeCurrentStackTrace()
952 V8StackTraceImpl::maxCallStackSizeToCapture); in asyncTaskScheduledForStack()
1056 std::unique_ptr<V8StackTraceImpl> V8Debugger::captureStackTrace( in captureStackTrace()
1066 stackSize = V8StackTraceImpl::maxCallStackSizeToCapture; in captureStackTrace()
1071 stackSize = V8StackTraceImpl::maxCallStackSizeToCapture; in captureStackTrace()
1074 return V8StackTraceImpl::capture(this, contextGroupId, stackSize); in captureStackTrace()
Dv8-inspector-impl.cc113 V8StackTraceImpl::setCaptureStackTraceForUncaughtExceptions(m_isolate, in enableStackCapturingIfNeeded()
120 V8StackTraceImpl::setCaptureStackTraceForUncaughtExceptions(m_isolate, in disableStackCapturingIfNeeded()
262 std::unique_ptr<V8StackTraceImpl> stackTraceImpl( in exceptionThrown()
263 static_cast<V8StackTraceImpl*>(stackTrace.release())); in exceptionThrown()
Dv8-inspector-impl.h56 class V8StackTraceImpl; variable
Dv8-console-message.cc210 std::unique_ptr<V8StackTraceImpl> stackTrace, in setLocation()
408 std::unique_ptr<V8StackTraceImpl> stackTrace) { in createForConsoleAPI()
463 std::unique_ptr<V8StackTraceImpl> stackTrace, int scriptId, in createForException()
Dv8-console.cc293 std::unique_ptr<V8StackTraceImpl> stackTrace = in identifierFromTitleOrStackTrace()
294 V8StackTraceImpl::capture(inspector->debugger(), helper.groupId(), 1); in identifierFromTitleOrStackTrace()
Dv8-profiler-agent-impl.cc151 std::unique_ptr<V8StackTraceImpl> callStack = in currentDebugLocation()
Dv8-runtime-agent-impl.cc481 V8StackTraceImpl::maxCallStackSizeToCapture = size; in setMaxCallStackSizeToCapture()
Dv8-debugger-agent-impl.cc1649 std::unique_ptr<V8StackTraceImpl> stack = in didParseSource()
1650 V8StackTraceImpl::capture(m_inspector->debugger(), contextGroupId, 1); in didParseSource()
Dinjected-script.cc264 std::unique_ptr<V8StackTraceImpl> stack; in catchCallback()