Home
last modified time | relevance | path

Searched refs:debuggerAgent (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInjectedScriptHost.cpp116 …if (InspectorDebuggerAgent* debuggerAgent = m_instrumentingAgents ? m_instrumentingAgents->inspect… in debugFunction() local
117debuggerAgent->setBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::DebugComm… in debugFunction()
122 …if (InspectorDebuggerAgent* debuggerAgent = m_instrumentingAgents ? m_instrumentingAgents->inspect… in undebugFunction() local
123debuggerAgent->removeBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::DebugC… in undebugFunction()
135 …if (InspectorDebuggerAgent* debuggerAgent = m_instrumentingAgents ? m_instrumentingAgents->inspect… in monitorFunction() local
136debuggerAgent->setBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::MonitorCo… in monitorFunction()
141 …if (InspectorDebuggerAgent* debuggerAgent = m_instrumentingAgents ? m_instrumentingAgents->inspect… in unmonitorFunction() local
142debuggerAgent->removeBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::Monito… in unmonitorFunction()
DInspectorInstrumentation.cpp93 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent()) in isDebuggerPausedImpl() local
94 return debuggerAgent->isPaused(); in isDebuggerPausedImpl()
139 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent()) in preprocessImpl() local
140 return debuggerAgent->preprocess(frame, sourceCode); in preprocessImpl()
146 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent()) in preprocessEventListenerImpl() local
147 return debuggerAgent->preprocessEventListener(frame, source, url, functionName); in preprocessEventListenerImpl()
DInspectorController.cpp167 InspectorDebuggerAgent* debuggerAgent = debuggerAgentPtr.get(); in initializeDeferredAgents() local
170 m_agents.append(InspectorDOMDebuggerAgent::create(m_domAgent, debuggerAgent)); in initializeDeferredAgents()
389 if (InspectorDebuggerAgent* debuggerAgent = m_instrumentingAgents->inspectorDebuggerAgent()) { in resume() local
391 debuggerAgent->resume(&error); in resume()
DInspectorDOMDebuggerAgent.cpp77 …spectorDOMDebuggerAgent::create(InspectorDOMAgent* domAgent, InspectorDebuggerAgent* debuggerAgent) in create() argument
79 return adoptPtr(new InspectorDOMDebuggerAgent(domAgent, debuggerAgent)); in create()
82 …gent::InspectorDOMDebuggerAgent(InspectorDOMAgent* domAgent, InspectorDebuggerAgent* debuggerAgent) in InspectorDOMDebuggerAgent() argument
85 , m_debuggerAgent(debuggerAgent) in InspectorDOMDebuggerAgent()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DScript.js124 … this.target().debuggerAgent().getScriptSource(this.scriptId, didGetScriptSource.bind(this));
155 …this.target().debuggerAgent().searchInContent(this.scriptId, query, caseSensitive, isRegex, innerC…
201 …this.target().debuggerAgent().setScriptSource(this.scriptId, newSource, undefined, didEditScriptSo…
DScriptSnippetModel.js243 …target.debuggerAgent().compileScript(expression, evaluationUrl, executionContext.id, compileCallba…
282 …target.debuggerAgent().runScript(scriptId, executionContext.id, "console", false, runCallback.bind…
DRemoteObject.js673 this._debuggerAgent = target.debuggerAgent();
DDebuggerModel.js41 this._agent = target.debuggerAgent();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
DSourcesPanel.js1077 …target.debuggerAgent().getFunctionDetails(remoteObject.objectId, didGetFunctionDetails.bind(this));