Home
last modified time | relevance | path

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

/external/v8/src/inspector/
Dv8-stack-trace-impl.h19 class AsyncStackTrace; variable
87 std::shared_ptr<AsyncStackTrace> asyncParent,
101 AsyncStackTrace* m_parent;
106 std::weak_ptr<AsyncStackTrace> m_asyncParent;
112 class AsyncStackTrace {
114 static std::shared_ptr<AsyncStackTrace> capture(V8Debugger*,
119 std::shared_ptr<AsyncStackTrace> stack);
136 std::weak_ptr<AsyncStackTrace> parent() const;
145 AsyncStackTrace(int contextGroupId, const String16& description,
147 std::shared_ptr<AsyncStackTrace> asyncParent,
[all …]
Dv8-stack-trace-impl.cc51 std::shared_ptr<AsyncStackTrace>* asyncParent, in calculateAsyncChain()
81 const std::shared_ptr<AsyncStackTrace>& asyncParent, in buildInspectorObjectCommon()
109 AsyncStackTrace::store(debugger, asyncParent))) in buildInspectorObjectCommon()
247 std::shared_ptr<AsyncStackTrace> asyncParent; in create()
278 std::shared_ptr<AsyncStackTrace> asyncParent, in V8StackTraceImpl()
289 m_frames, 0, std::shared_ptr<AsyncStackTrace>(), V8StackTraceId())); in clone()
411 std::shared_ptr<AsyncStackTrace> AsyncStackTrace::capture( in capture()
429 std::shared_ptr<AsyncStackTrace> asyncParent; in capture()
450 return std::shared_ptr<AsyncStackTrace>( in capture()
451 new AsyncStackTrace(contextGroupId, description, std::move(frames), in capture()
[all …]
Dv8-debugger.h25 class AsyncStackTrace; variable
111 std::shared_ptr<AsyncStackTrace> currentAsyncParent();
136 uintptr_t storeStackTrace(std::shared_ptr<AsyncStackTrace> stack);
147 std::shared_ptr<AsyncStackTrace> stackTraceFor(int contextGroupId,
237 std::unordered_map<void*, std::weak_ptr<AsyncStackTrace>>;
245 std::vector<std::shared_ptr<AsyncStackTrace>> m_currentAsyncParent;
252 std::list<std::shared_ptr<AsyncStackTrace>> m_allAsyncStacks;
269 std::unordered_map<uintptr_t, std::weak_ptr<AsyncStackTrace>>;
Dv8-debugger.cc330 std::shared_ptr<AsyncStackTrace>(parent)->suspendedTaskId(); in asyncStepOutOfFunction()
632 std::shared_ptr<AsyncStackTrace> stack(stackIt->second); in AsyncEventOccurred()
643 std::shared_ptr<AsyncStackTrace> V8Debugger::currentAsyncParent() { in currentAsyncParent()
855 std::shared_ptr<AsyncStackTrace> V8Debugger::stackTraceFor( in stackTraceFor()
871 std::shared_ptr<AsyncStackTrace> asyncStack = in storeCurrentStackTrace()
872 AsyncStackTrace::capture(this, contextGroupId, toString16(description), in storeCurrentStackTrace()
876 uintptr_t id = AsyncStackTrace::store(this, asyncStack); in storeCurrentStackTrace()
892 std::shared_ptr<AsyncStackTrace> asyncStack) { in storeStackTrace()
950 std::shared_ptr<AsyncStackTrace> asyncStack = in asyncTaskScheduledForStack()
951 AsyncStackTrace::capture(this, currentContextGroupId(), taskName, in asyncTaskScheduledForStack()
[all …]
Dv8-debugger-agent-impl.cc1527 std::shared_ptr<AsyncStackTrace> asyncParent = in currentAsyncStackTrace()