• Home
  • Raw
  • Download

Lines Matching refs:V8StackTraceImpl

24 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()
116 std::unique_ptr<V8StackTraceImpl> V8StackTraceImpl::create( in create()
122 std::vector<V8StackTraceImpl::Frame> frames; in create()
128 V8StackTraceImpl* asyncCallChain = nullptr; in create()
153 std::unique_ptr<V8StackTraceImpl> result(new V8StackTraceImpl( in create()
158 V8StackTraceImpl* deepest = result.get(); in create()
169 std::unique_ptr<V8StackTraceImpl> V8StackTraceImpl::capture( in capture()
179 return V8StackTraceImpl::create(debugger, contextGroupId, stackTrace, in capture()
183 std::unique_ptr<V8StackTraceImpl> V8StackTraceImpl::cloneImpl() { in cloneImpl()
185 std::unique_ptr<V8StackTraceImpl> copy( in cloneImpl()
186 new V8StackTraceImpl(m_contextGroupId, m_description, framesCopy, in cloneImpl()
192 std::unique_ptr<V8StackTrace> V8StackTraceImpl::clone() { in clone()
196 return std::unique_ptr<V8StackTraceImpl>( in clone()
197 new V8StackTraceImpl(m_contextGroupId, m_description, frames, nullptr)); in clone()
200 V8StackTraceImpl::V8StackTraceImpl(int contextGroupId, in V8StackTraceImpl() function in v8_inspector::V8StackTraceImpl
203 std::unique_ptr<V8StackTraceImpl> parent) in V8StackTraceImpl()
210 V8StackTraceImpl::~V8StackTraceImpl() {} in ~V8StackTraceImpl()
212 void V8StackTraceImpl::setCreation(std::unique_ptr<V8StackTraceImpl> creation) { in setCreation()
225 StringView V8StackTraceImpl::topSourceURL() const { in topSourceURL()
230 int V8StackTraceImpl::topLineNumber() const { in topLineNumber()
235 int V8StackTraceImpl::topColumnNumber() const { in topColumnNumber()
240 StringView V8StackTraceImpl::topFunctionName() const { in topFunctionName()
245 StringView V8StackTraceImpl::topScriptId() const { in topScriptId()
251 V8StackTraceImpl::buildInspectorObjectImpl() const { in buildInspectorObjectImpl()
271 V8StackTraceImpl::buildInspectorObjectForTail(V8Debugger* debugger) const { in buildInspectorObjectForTail()
275 std::unique_ptr<V8StackTraceImpl> fullChain = V8StackTraceImpl::create( in buildInspectorObjectForTail()
277 V8StackTraceImpl::maxCallStackSizeToCapture); in buildInspectorObjectForTail()
283 V8StackTraceImpl::buildInspectorObject() const { in buildInspectorObject()
287 std::unique_ptr<StringBuffer> V8StackTraceImpl::toString() const { in toString()