Home
last modified time | relevance | path

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

/external/v8/src/inspector/
Dv8-stack-trace-impl.cc128 V8StackTraceImpl* asyncCallChain = nullptr; in create() local
130 asyncCallChain = debugger->currentAsyncCallChain(); in create()
137 if (contextGroupId && asyncCallChain && asyncCallChain->m_contextGroupId && in create()
138 asyncCallChain->m_contextGroupId != contextGroupId) { in create()
139 asyncCallChain = nullptr; in create()
146 if (asyncCallChain && asyncCallChain->isEmpty() && in create()
147 !asyncCallChain->m_creation) { in create()
148 asyncCallChain = asyncCallChain->m_parent.get(); in create()
151 if (stackTrace.IsEmpty() && !asyncCallChain) return nullptr; in create()
155 asyncCallChain ? asyncCallChain->cloneImpl() : nullptr)); in create()