Searched refs:V8StackTraceImpl (Results 1 – 13 of 13) sorted by relevance
/external/v8/src/inspector/ |
D | v8-stack-trace-impl.cc | 20 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 …]
|
D | v8-stack-trace-impl.h | 46 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);
|
D | v8-console-message.h | 23 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;
|
D | v8-debugger.h | 30 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;
|
D | v8-debugger.cc | 408 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()
|
D | v8-inspector-impl.cc | 113 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()
|
D | v8-inspector-impl.h | 56 class V8StackTraceImpl; variable
|
D | v8-console-message.cc | 210 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()
|
D | v8-console.cc | 293 std::unique_ptr<V8StackTraceImpl> stackTrace = in identifierFromTitleOrStackTrace() 294 V8StackTraceImpl::capture(inspector->debugger(), helper.groupId(), 1); in identifierFromTitleOrStackTrace()
|
D | v8-profiler-agent-impl.cc | 151 std::unique_ptr<V8StackTraceImpl> callStack = in currentDebugLocation()
|
D | v8-runtime-agent-impl.cc | 481 V8StackTraceImpl::maxCallStackSizeToCapture = size; in setMaxCallStackSizeToCapture()
|
D | v8-debugger-agent-impl.cc | 1649 std::unique_ptr<V8StackTraceImpl> stack = in didParseSource() 1650 V8StackTraceImpl::capture(m_inspector->debugger(), contextGroupId, 1); in didParseSource()
|
D | injected-script.cc | 264 std::unique_ptr<V8StackTraceImpl> stack; in catchCallback()
|