HomeSort by relevance Sort by last modified time
    Searched refs:InspectorTimelineAgent (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/inspector/
InspectorTimelineAgent.cpp 32 #include "InspectorTimelineAgent.h"
83 void InspectorTimelineAgent::pushGCEventRecords()
98 void InspectorTimelineAgent::didGC(double startTime, double endTime, size_t collectedBytesCount)
103 InspectorTimelineAgent::~InspectorTimelineAgent()
108 void InspectorTimelineAgent::setFrontend(InspectorFrontend* frontend)
113 void InspectorTimelineAgent::clearFrontend()
120 void InspectorTimelineAgent::restore()
128 void InspectorTimelineAgent::start(ErrorString*)
138 void InspectorTimelineAgent::stop(ErrorString*
    [all...]
InspectorTimelineAgent.h 54 class InspectorTimelineAgent : ScriptGCEventListener {
55 WTF_MAKE_NONCOPYABLE(InspectorTimelineAgent);
57 static PassOwnPtr<InspectorTimelineAgent> create(InstrumentingAgents* instrumentingAgents, InspectorState* state)
59 return adoptPtr(new InspectorTimelineAgent(instrumentingAgents, state));
62 ~InspectorTimelineAgent();
136 InspectorTimelineAgent(InstrumentingAgents*, InspectorState*);
InspectorInstrumentation.cpp 53 #include "InspectorTimelineAgent.h"
191 if (InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(inspectorAgent))
198 if (InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(inspectorAgent))
205 if (InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(inspectorAgent))
212 InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(inspectorAgent);
222 if (InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(cookie))
229 InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(inspectorAgent);
239 if (InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(cookie))
248 InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(inspectorAgent);
260 if (InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(cookie)
    [all...]
InstrumentingAgents.h 52 class InspectorTimelineAgent;
105 InspectorTimelineAgent* inspectorTimelineAgent() const { return m_inspectorTimelineAgent; }
106 void setInspectorTimelineAgent(InspectorTimelineAgent* agent) { m_inspectorTimelineAgent = agent; }
139 InspectorTimelineAgent* m_inspectorTimelineAgent;
InspectorAgent.h 71 class InspectorTimelineAgent;
126 InspectorTimelineAgent* timelineAgent() { return m_timelineAgent.get(); }
203 OwnPtr<InspectorTimelineAgent> m_timelineAgent;
InspectorAgent.cpp 55 #include "InspectorTimelineAgent.h"
124 , m_timelineAgent(InspectorTimelineAgent::create(m_instrumentingAgents.get(), m_state.get()))
InspectorInstrumentation.h 53 class InspectorTimelineAgent;
307 static InspectorTimelineAgent* retrieveTimelineAgent(InspectorAgent*);
308 static InspectorTimelineAgent* retrieveTimelineAgent(const InspectorInstrumentationCookie&);
    [all...]

Completed in 401 milliseconds