Searched refs:InspectorTimelineAgent (Results 1 – 19 of 19) sorted by relevance
/external/webkit/Source/WebCore/inspector/ |
D | InspectorTimelineAgent.cpp | 83 void InspectorTimelineAgent::pushGCEventRecords() in pushGCEventRecords() 98 void InspectorTimelineAgent::didGC(double startTime, double endTime, size_t collectedBytesCount) in didGC() 103 InspectorTimelineAgent::~InspectorTimelineAgent() in ~InspectorTimelineAgent() 108 void InspectorTimelineAgent::setFrontend(InspectorFrontend* frontend) in setFrontend() 113 void InspectorTimelineAgent::clearFrontend() in clearFrontend() 120 void InspectorTimelineAgent::restore() in restore() 128 void InspectorTimelineAgent::start(ErrorString*) in start() 138 void InspectorTimelineAgent::stop(ErrorString*) in stop() 153 bool InspectorTimelineAgent::started() const in started() 158 void InspectorTimelineAgent::willCallFunction(const String& scriptName, int scriptLine) in willCallFunction() [all …]
|
D | InspectorInstrumentation.cpp | 191 if (InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(inspectorAgent)) in didScheduleResourceRequestImpl() 198 if (InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(inspectorAgent)) in didInstallTimerImpl() 205 if (InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(inspectorAgent)) in didRemoveTimerImpl() 212 InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(inspectorAgent); in willCallFunctionImpl() 222 if (InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(cookie)) in didCallFunctionImpl() 229 InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(inspectorAgent); in willChangeXHRReadyStateImpl() 239 if (InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(cookie)) in didChangeXHRReadyStateImpl() 248 InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(inspectorAgent); in willDispatchEventImpl() 260 if (InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(cookie)) in didDispatchEventImpl() 269 InspectorTimelineAgent* timelineAgent = retrieveTimelineAgent(inspectorAgent); in willDispatchEventOnWindowImpl() [all …]
|
D | InspectorTimelineAgent.h | 54 class InspectorTimelineAgent : ScriptGCEventListener { 55 WTF_MAKE_NONCOPYABLE(InspectorTimelineAgent); 57 …static PassOwnPtr<InspectorTimelineAgent> create(InstrumentingAgents* instrumentingAgents, Inspect… in create() 59 return adoptPtr(new InspectorTimelineAgent(instrumentingAgents, state)); in create() 62 ~InspectorTimelineAgent(); 136 InspectorTimelineAgent(InstrumentingAgents*, InspectorState*);
|
D | InstrumentingAgents.h | 52 class InspectorTimelineAgent; variable 105 InspectorTimelineAgent* inspectorTimelineAgent() const { return m_inspectorTimelineAgent; } in inspectorTimelineAgent() 106 …void setInspectorTimelineAgent(InspectorTimelineAgent* agent) { m_inspectorTimelineAgent = agent; } in setInspectorTimelineAgent() 139 InspectorTimelineAgent* m_inspectorTimelineAgent;
|
D | InspectorAgent.h | 71 class InspectorTimelineAgent; variable 126 InspectorTimelineAgent* timelineAgent() { return m_timelineAgent.get(); } in timelineAgent() 203 OwnPtr<InspectorTimelineAgent> m_timelineAgent;
|
D | InspectorInstrumentation.h | 53 class InspectorTimelineAgent; variable 307 static InspectorTimelineAgent* retrieveTimelineAgent(InspectorAgent*); 308 static InspectorTimelineAgent* retrieveTimelineAgent(const InspectorInstrumentationCookie&);
|
D | InspectorAgent.cpp | 124 , m_timelineAgent(InspectorTimelineAgent::create(m_instrumentingAgents.get(), m_state.get())) in InspectorAgent()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-01-29 | 3319 * inspector/InspectorTimelineAgent.h: 3320 (WebCore::InspectorTimelineAgent::retrieve): 7955 Refactors the TimelineRecordFactory and InspectorTimelineAgent to support reporting data 7968 * inspector/InspectorTimelineAgent.cpp: 7969 (WebCore::InspectorTimelineAgent::willDispatchEvent): 7970 (WebCore::InspectorTimelineAgent::willLayout): 7971 (WebCore::InspectorTimelineAgent::willRecalculateStyle): 7972 (WebCore::InspectorTimelineAgent::willPaint): 7973 (WebCore::InspectorTimelineAgent::willWriteHTML): 7974 (WebCore::InspectorTimelineAgent::didWriteHTML): [all …]
|
D | ChangeLog-2010-12-06 | 37594 * inspector/InspectorTimelineAgent.cpp: 37595 (WebCore::InspectorTimelineAgent::InspectorTimelineAgent): 37596 (WebCore::InspectorTimelineAgent::~InspectorTimelineAgent): 37597 * inspector/InspectorTimelineAgent.h: 40783 * inspector/InspectorTimelineAgent.cpp: 40784 (WebCore::InspectorTimelineAgent::InspectorTimelineAgent): 40785 * inspector/InspectorTimelineAgent.h: 40786 (WebCore::InspectorTimelineAgent::id): 43002 * inspector/InspectorTimelineAgent.cpp: 43003 (WebCore::InspectorTimelineAgent::didFinishLoadingResource): [all …]
|
D | ChangeLog-2010-05-24 | 8188 * inspector/InspectorTimelineAgent.cpp: 8189 (WebCore::InspectorTimelineAgent::didScheduleResourceRequest): 8190 * inspector/InspectorTimelineAgent.h: 16919 * inspector/InspectorTimelineAgent.cpp: 16920 (WebCore::InspectorTimelineAgent::pushGCEventRecords): 23888 * inspector/InspectorTimelineAgent.cpp: 23889 (WebCore::InspectorTimelineAgent::didInstallTimer): 23890 (WebCore::InspectorTimelineAgent::didRemoveTimer): 23891 (WebCore::InspectorTimelineAgent::didMarkTimeline): 23892 (WebCore::InspectorTimelineAgent::didMarkDOMContentEvent): [all …]
|
D | ChangeLog | 35055 * inspector/InspectorTimelineAgent.cpp: 35056 (WebCore::InspectorTimelineAgent::pushGCEventRecords): 35057 (WebCore::InspectorTimelineAgent::start): 35058 (WebCore::InspectorTimelineAgent::stop): 35059 (WebCore::InspectorTimelineAgent::willCallFunction): 35060 (WebCore::InspectorTimelineAgent::didCallFunction): 35061 (WebCore::InspectorTimelineAgent::willDispatchEvent): 35062 (WebCore::InspectorTimelineAgent::didDispatchEvent): 35063 (WebCore::InspectorTimelineAgent::willLayout): 35064 (WebCore::InspectorTimelineAgent::didLayout): [all …]
|
D | WebCore.pro | 842 inspector/InspectorTimelineAgent.cpp \ 1788 inspector/InspectorTimelineAgent.h \
|
D | CMakeLists.txt | 924 inspector/InspectorTimelineAgent.cpp
|
D | GNUmakefile.list.am | 1989 Source/WebCore/inspector/InspectorTimelineAgent.cpp \ 1990 Source/WebCore/inspector/InspectorTimelineAgent.h \
|
D | ChangeLog-2011-02-16 | 3355 * inspector/InspectorTimelineAgent.cpp: 3356 (WebCore::InspectorTimelineAgent::restore): 3357 (WebCore::InspectorTimelineAgent::~InspectorTimelineAgent): 3358 (WebCore::InspectorTimelineAgent::didCommitLoad): 3359 (WebCore::InspectorTimelineAgent::setFrontend): 3360 (WebCore::InspectorTimelineAgent::InspectorTimelineAgent): 3361 * inspector/InspectorTimelineAgent.h: 3362 (WebCore::InspectorTimelineAgent::create): 9324 * inspector/InspectorTimelineAgent.cpp: 9325 (WebCore::InspectorTimelineAgent::setHeapSizeStatistic): [all …]
|
D | GNUmakefile.am | 2012 Source/WebCore/inspector/InspectorTimelineAgent.cpp \ 2013 Source/WebCore/inspector/InspectorTimelineAgent.h \
|
D | WebCore.gypi | 3280 'inspector/InspectorTimelineAgent.cpp', 3281 'inspector/InspectorTimelineAgent.h',
|
/external/webkit/Source/WebCore/WebCore.xcodeproj/ |
D | project.pbxproj | 1604 …0E800075D00 /* InspectorTimelineAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 754133A7102… 1605 …F400075D00 /* InspectorTimelineAgent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 754133A910… 8202 …D00 /* InspectorTimelineAgent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType … 8203 … /* InspectorTimelineAgent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =… 13331 754133A9102E00F400075D00 /* InspectorTimelineAgent.cpp */, 13332 754133A7102E00E800075D00 /* InspectorTimelineAgent.h */, 21420 754133A8102E00E800075D00 /* InspectorTimelineAgent.h in Headers */, 24243 754133AA102E00F400075D00 /* InspectorTimelineAgent.cpp in Sources */,
|
/external/webkit/Source/WebKit/chromium/ |
D | ChangeLog-2011-02-16 | 11291 Web Inspector: Fixes a crash in addTimelineRecord when InspectorTimelineAgent
|