OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AsyncCallChain
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/inspector/
AsyncCallStackTracker.h
70
class
AsyncCallChain
FINAL : public RefCountedWillBeGarbageCollected<
AsyncCallChain
> {
72
AsyncCallChain
() { }
73
AsyncCallChain
(const
AsyncCallChain
& t) : m_callStacks(t.m_callStacks) { }
103
WillBeHeapHashMap<int, RefPtrWillBeMember<
AsyncCallChain
> > m_timerCallChains;
104
WillBeHeapHashMap<int, RefPtrWillBeMember<
AsyncCallChain
> > m_animationFrameCallChains;
105
WillBeHeapHashMap<RawPtrWillBeMember<Event>, RefPtrWillBeMember<
AsyncCallChain
> > m_eventCallChains;
106
WillBeHeapHashMap<RawPtrWillBeMember<EventTarget>, RefPtrWillBeMember<
AsyncCallChain
> > m_xhrCallChains;
107
WillBeHeapHashMap<RawPtrWillBeMember<MutationObserver>, RefPtrWillBeMember<
AsyncCallChain
> > m_mutationObserverCallChains
[
all
...]
AsyncCallStackTracker.cpp
100
void AsyncCallStackTracker::
AsyncCallChain
::trace(Visitor* visitor)
131
const AsyncCallStackTracker::
AsyncCallChain
* AsyncCallStackTracker::currentAsyncCallChain() const
407
PassRefPtrWillBeRawPtr<AsyncCallStackTracker::
AsyncCallChain
> AsyncCallStackTracker::createAsyncCallChain(const String& description, const ScriptValue& callFrames)
413
RefPtrWillBeRawPtr<
AsyncCallChain
> chain = adoptRefWillBeNoop(m_currentAsyncCallChain ? new AsyncCallStackTracker::
AsyncCallChain
(*m_currentAsyncCallChain) : new AsyncCallStackTracker::
AsyncCallChain
());
419
void AsyncCallStackTracker::setCurrentAsyncCallChain(ExecutionContext* context, PassRefPtrWillBeRawPtr<
AsyncCallChain
> chain)
424
// Current
AsyncCallChain
corresponds to the bottommost JS call frame.
442
void AsyncCallStackTracker::ensureMaxAsyncCallChainDepth(
AsyncCallChain
* chain, unsigned maxDepth)
InspectorDebuggerAgent.cpp
[
all
...]
Completed in 83 milliseconds