HomeSort by relevance Sort by last modified time
    Searched refs:InspectorInstrumentation (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
WebIDBCallbacksImpl.cpp 33 #include "core/inspector/InspectorInstrumentation.h"
66 m_asyncOperationId = InspectorInstrumentation::traceAsyncOperationStarting(m_request->executionContext(), "IndexedDB");
71 InspectorInstrumentation::traceAsyncOperationCompleted(m_request->executionContext(), m_asyncOperationId);
84 InspectorInstrumentationCookie cookie = InspectorInstrumentation::traceAsyncCallbackStarting(m_request->executionContext(), m_asyncOperationId);
86 InspectorInstrumentation::traceAsyncCallbackCompleted(cookie);
94 InspectorInstrumentationCookie cookie = InspectorInstrumentation::traceAsyncCallbackStarting(m_request->executionContext(), m_asyncOperationId);
96 InspectorInstrumentation::traceAsyncCallbackCompleted(cookie);
101 InspectorInstrumentationCookie cookie = InspectorInstrumentation::traceAsyncCallbackStarting(m_request->executionContext(), m_asyncOperationId);
103 InspectorInstrumentation::traceAsyncCallbackCompleted(cookie);
108 InspectorInstrumentationCookie cookie = InspectorInstrumentation::traceAsyncCallbackStarting(m_request->executionContext(), m_asyncOperationId)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MainThreadTaskRunner.cpp 32 #include "core/inspector/InspectorInstrumentation.h"
83 InspectorInstrumentation::didPostExecutionContextTask(m_context, task.get());
101 InspectorInstrumentation::willPerformExecutionContextTask(m_context, task.get());
104 InspectorInstrumentation::didPerformExecutionContextTask(m_context);
130 InspectorInstrumentation::willPerformExecutionContextTask(m_context, task.get());
133 InspectorInstrumentation::didPerformExecutionContextTask(m_context);
ScriptedAnimationController.cpp 35 #include "core/inspector/InspectorInstrumentation.h"
94 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
95 InspectorInstrumentation::didRequestAnimationFrame(m_document, id);
106 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
107 InspectorInstrumentation::didCancelAnimationFrame(m_document, id);
116 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
117 InspectorInstrumentation::didCancelAnimationFrame(m_document, id);
141 InspectorInstrumentation::didRemoveEvent(eventTarget, events[i].get());
163 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
164 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willFireAnimationFrame(m_document, callback->m_id)
    [all...]
MutationObserver.cpp 42 #include "core/inspector/InspectorInstrumentation.h"
75 InspectorInstrumentation::didClearAllMutationRecords(m_callback->executionContext(), this);
142 InspectorInstrumentation::didClearAllMutationRecords(m_callback->executionContext(), this);
149 InspectorInstrumentation::didClearAllMutationRecords(m_callback->executionContext(), this);
193 InspectorInstrumentation::didEnqueueMutationRecord(m_callback->executionContext(), this);
235 InspectorInstrumentation::willDeliverMutationRecords(m_callback->executionContext(), this);
237 InspectorInstrumentation::didDeliverMutationRecords(m_callback->executionContext());
  /external/chromium_org/third_party/WebKit/Source/core/events/
DOMWindowEventQueue.cpp 33 #include "core/inspector/InspectorInstrumentation.h"
82 InspectorInstrumentation::didEnqueueEvent(event->target(), event.get());
98 InspectorInstrumentation::didRemoveEvent(event->target(), event);
110 if (InspectorInstrumentation::hasFrontends()) {
115 InspectorInstrumentation::didRemoveEvent(event->target(), event.get());
140 InspectorInstrumentation::didRemoveEvent(event->target(), event.get());
GenericEventQueue.cpp 31 #include "core/inspector/InspectorInstrumentation.h"
68 InspectorInstrumentation::didEnqueueEvent(event->target() ? event->target() : m_owner.get(), event.get());
82 InspectorInstrumentation::didRemoveEvent(event->target() ? event->target() : m_owner.get(), event);
109 InspectorInstrumentation::didRemoveEvent(target, event);
126 InspectorInstrumentation::didRemoveEvent(event->target() ? event->target() : m_owner.get(), event);
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerInspectorProxy.cpp 10 #include "core/inspector/InspectorInstrumentation.h"
39 InspectorInstrumentation::didStartWorker(context, this, url);
45 InspectorInstrumentation::workerTerminated(m_executionContext, this);
WorkerThread.cpp 33 #include "core/inspector/InspectorInstrumentation.h"
162 InspectorInstrumentation::willPerformExecutionContextTask(workerGlobalScope, m_task.get());
166 InspectorInstrumentation::didPerformExecutionContextTask(workerGlobalScope);
178 InspectorInstrumentation::didPostExecutionContextTask(m_workerThread.workerGlobalScope(), m_task.get());
282 InspectorInstrumentation::willEvaluateWorkerScript(workerGlobalScope(), startMode);
396 InspectorInstrumentation::didKillAllExecutionContextTasks(m_workerGlobalScope.get());
464 InspectorInstrumentation::willProcessTask(workerGlobalScope());
466 InspectorInstrumentation::didProcessTask(workerGlobalScope());
474 InspectorInstrumentation::willEnterNestedRunLoop(m_workerGlobalScope.get());
479 InspectorInstrumentation::didLeaveNestedRunLoop(m_workerGlobalScope.get())
    [all...]
Worker.cpp 35 #include "core/inspector/InspectorInstrumentation.h"
121 InspectorInstrumentation::didReceiveScriptResponse(executionContext(), identifier);
131 if (InspectorInstrumentation::shouldPauseDedicatedWorkerOnStart(executionContext()))
134 InspectorInstrumentation::scriptImported(executionContext(), m_scriptLoader->identifier(), m_scriptLoader->script());
WorkerEventQueue.cpp 33 #include "core/inspector/InspectorInstrumentation.h"
110 InspectorInstrumentation::didRemoveEvent(event->target(), event);
119 InspectorInstrumentation::didEnqueueEvent(event->target(), event.get());
142 InspectorInstrumentation::didRemoveEvent(event->target(), event);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMTimer.cpp 31 #include "core/inspector/InspectorInstrumentation.h"
76 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
77 InspectorInstrumentation::didInstallTimer(context, timeoutID, timeout, singleShot);
88 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
89 InspectorInstrumentation::didRemoveTimer(context, timeoutID);
129 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
130 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willFireTimer(context, m_timeoutID);
145 InspectorInstrumentation::didFireTimer(cookie);
160 InspectorInstrumentation::didFireTimer(cookie);
ConsoleBase.cpp 132 InspectorInstrumentation::consoleProfile(context(), title);
137 InspectorInstrumentation::consoleProfileEnd(context(), title);
142 InspectorInstrumentation::consoleTime(context(), title);
154 InspectorInstrumentation::consoleTimeEnd(context(), title, scriptState);
181 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
182 InspectorInstrumentation::consoleTimeStamp(context(), title);
192 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
193 InspectorInstrumentation::consoleTimeline(context(), title, scriptState);
200 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
201 InspectorInstrumentation::consoleTimelineEnd(context(), title, scriptState)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
PingLoader.cpp 39 #include "core/inspector/InspectorInstrumentation.h"
143 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
144 InspectorInstrumentation::willSendRequest(frame, m_identifier, frame->loader().documentLoader(), request, ResourceResponse(), initiatorInfo);
168 InspectorInstrumentation::didReceiveResourceResponse(page->deprecatedLocalMainFrame(), m_identifier, 0, resourceResponse, 0);
169 InspectorInstrumentation::didFailLoading(page->deprecatedLocalMainFrame(), m_identifier, ResourceError::cancelledError(m_url));
178 InspectorInstrumentation::didFailLoading(page->deprecatedLocalMainFrame(), m_identifier, ResourceError::cancelledError(m_url));
187 InspectorInstrumentation::didFailLoading(page->deprecatedLocalMainFrame(), m_identifier, ResourceError::cancelledError(m_url));
196 InspectorInstrumentation::didFailLoading(page->deprecatedLocalMainFrame(), m_identifier, ResourceError(resourceError));
205 InspectorInstrumentation::didFailLoading(page->deprecatedLocalMainFrame(), m_identifier, ResourceError::cancelledError(m_url));
FrameFetchContext.cpp 37 #include "core/inspector/InspectorInstrumentation.h"
144 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
145 InspectorInstrumentation::willSendRequest(m_frame, identifier, ensureLoader(loader), request, redirectResponse, initiatorInfo);
158 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
160 InspectorInstrumentation::didReceiveResourceResponse(m_frame, identifier, documentLoader, r, resourceLoader);
169 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
170 InspectorInstrumentation::didReceiveData(m_frame, identifier, data, dataLength, encodedDataLength);
177 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
178 InspectorInstrumentation::didReceiveData(m_frame, identifier, 0, dataLength, encodedDataLength);
187 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8WorkerGlobalScopeEventListener.cpp 42 #include "core/inspector/InspectorInstrumentation.h"
82 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
84 if (InspectorInstrumentation::timelineAgentEnabled(scriptState()->executionContext())) {
89 cookie = InspectorInstrumentation::willCallFunction(scriptState()->executionContext(), scriptId, resourceName, lineNumber);
95 InspectorInstrumentation::didCallFunction(cookie);
ScriptCallStackFactory.cpp 36 #include "core/inspector/InspectorInstrumentation.h"
94 if (InspectorInstrumentation::hasFrontends() && maxStackSize > 1)
95 InspectorInstrumentation::appendAsyncCallStack(currentExecutionContext(isolate), callStack.get());
117 if (InspectorInstrumentation::hasFrontends()) {
121 if (InspectorInstrumentation::consoleAgentEnabled(currentExecutionContext(isolate)))
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileSystemCallbacks.cpp 38 #include "core/inspector/InspectorInstrumentation.h"
68 m_asyncOperationId = InspectorInstrumentation::traceAsyncOperationStarting(m_executionContext.get(), "FileSystem");
76 InspectorInstrumentation::traceAsyncOperationCompleted(m_executionContext.get(), m_asyncOperationId);
102 InspectorInstrumentationCookie cookie = InspectorInstrumentation::traceAsyncOperationCompletedCallbackStarting(m_executionContext.get(), m_asyncOperationId);
108 InspectorInstrumentation::traceAsyncCallbackCompleted(cookie);
115 InspectorInstrumentationCookie cookie = InspectorInstrumentation::traceAsyncOperationCompletedCallbackStarting(m_executionContext.get(), m_asyncOperationId);
121 InspectorInstrumentation::traceAsyncCallbackCompleted(cookie);
128 InspectorInstrumentationCookie cookie = InspectorInstrumentation::traceAsyncOperationCompletedCallbackStarting(m_executionContext.get(), m_asyncOperationId);
134 InspectorInstrumentation::traceAsyncCallbackCompleted(cookie);
192 InspectorInstrumentationCookie cookie = InspectorInstrumentation::traceAsyncCallbackStarting(m_executionContext.get(), m_asyncOperationId)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ConsoleMessageStorage.cpp 38 InspectorInstrumentation::addMessageToConsole(executionContext(), message.get());
50 InspectorInstrumentation::consoleMessagesCleared(executionContext());
  /external/chromium_org/third_party/WebKit/Source/core/page/
Chrome.cpp 31 #include "core/inspector/InspectorInstrumentation.h"
204 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, message);
206 InspectorInstrumentation::didRunJavaScriptDialog(cookie);
227 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, message);
229 InspectorInstrumentation::didRunJavaScriptDialog(cookie);
244 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, message);
246 InspectorInstrumentation::didRunJavaScriptDialog(cookie);
262 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, prompt);
264 InspectorInstrumentation::didRunJavaScriptDialog(cookie);
  /external/chromium_org/third_party/WebKit/Source/core/
inspector_instrumentation_sources.target.darwin-arm.mk 22 $(gyp_shared_intermediate_dir)/blink/core/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
23 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
24 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink/core; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink/core"
inspector_instrumentation_sources.target.darwin-arm64.mk 22 $(gyp_shared_intermediate_dir)/blink/core/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
23 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
24 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink/core; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink/core"
inspector_instrumentation_sources.target.darwin-mips.mk 22 $(gyp_shared_intermediate_dir)/blink/core/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
23 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
24 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink/core; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink/core"
inspector_instrumentation_sources.target.darwin-mips64.mk 22 $(gyp_shared_intermediate_dir)/blink/core/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
23 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
24 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink/core; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink/core"
inspector_instrumentation_sources.target.darwin-x86.mk 22 $(gyp_shared_intermediate_dir)/blink/core/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
23 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
24 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink/core; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink/core"
inspector_instrumentation_sources.target.darwin-x86_64.mk 22 $(gyp_shared_intermediate_dir)/blink/core/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
23 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
24 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink/core; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink/core"

Completed in 464 milliseconds

1 2 3 4