Lines Matching refs:V8StackTraceImpl
661 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()
962 fullStack ? V8StackTraceImpl::maxCallStackSizeToCapture : 1; in captureStackTrace()
964 stackSize = V8StackTraceImpl::maxCallStackSizeToCapture; in captureStackTrace()
966 return V8StackTraceImpl::capture(this, contextGroupId, stackSize); in captureStackTrace()