Home
last modified time | relevance | path

Searched refs:DebuggerAgent (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/
Ddebug-agent.h44 class DebuggerAgent: public Thread {
46 DebuggerAgent(const char* name, int port) in DebuggerAgent() function
57 ~DebuggerAgent() { in ~DebuggerAgent()
87 DISALLOW_COPY_AND_ASSIGN(DebuggerAgent);
95 DebuggerAgentSession(DebuggerAgent* agent, Socket* client) in DebuggerAgentSession()
107 DebuggerAgent* agent_;
Ddebug-agent.cc41 DebuggerAgent* agent = Isolate::Current()->debugger_agent_instance(); in DebuggerAgentMessageHandler()
48 void DebuggerAgent::Run() { in Run()
86 void DebuggerAgent::Shutdown() { in Shutdown()
101 void DebuggerAgent::WaitUntilListening() { in WaitUntilListening()
108 void DebuggerAgent::CreateSession(Socket* client) { in CreateSession()
125 void DebuggerAgent::CloseSession() { in CloseSession()
138 void DebuggerAgent::DebuggerMessage(const v8::Debug::Message& message) { in DebuggerMessage()
150 void DebuggerAgent::OnSessionClosed(DebuggerAgentSession* session) { in OnSessionClosed()
Disolate.h93 class DebuggerAgent; variable
290 V(DebuggerAgent*, debugger_agent_instance, NULL)
Ddebug.h861 DebuggerAgent* agent_;
Ddebug.cc3169 agent_ = new DebuggerAgent(name, port); in StartAgent()
/external/webkit/Source/WebCore/inspector/front-end/
DDebuggerModel.js53 DebuggerAgent.enable();
58 DebuggerAgent.disable();
73 DebuggerAgent.continueToLocation(location);
92DebuggerAgent.setBreakpointByUrl(url, lineNumber, columnNumber, condition, didSetBreakpoint.bind(t…
102 DebuggerAgent.setBreakpoint(location, condition, didSetBreakpoint.bind(this));
107 DebuggerAgent.removeBreakpoint(breakpointId, callback);
DScript.js51 DebuggerAgent.getScriptSource(this.sourceID, didGetScriptSource.bind(this));
62 DebuggerAgent.editScriptSource(this.sourceID, newSource, didEditScriptSource.bind(this));
DScriptsPanel.js728 DebuggerAgent.setPauseOnExceptions(pauseOnExceptionsState, callback.bind(this));
851 DebuggerAgent.resume();
855 DebuggerAgent.pause();
868 DebuggerAgent.stepOver();
878 DebuggerAgent.stepInto();
888 DebuggerAgent.stepOut();
895 DebuggerAgent.setBreakpointsActive(true);
899 DebuggerAgent.setBreakpointsActive(false);
DDebuggerPresentationModel.js703DebuggerAgent.evaluateOnCallFrame(this._callFrame.id, code, objectGroup, includeCommandLineAPI, di…
/external/webkit/Source/WebKit/chromium/
DChangeLog-2011-02-1612465 * src/DebuggerAgent.h: Removed.
14021 * src/js/DebuggerAgent.js: Removed.
16151 * src/js/DebuggerAgent.js:
16152 …(devtools.DebuggerAgent.prototype.formatCallFrame_): return empty function name for anonymous func…
16576 * src/DebuggerAgent.h:
16610 * src/js/DebuggerAgent.js:
16611 …(devtools.DebuggerAgent.prototype.editScriptSource.this.requestSeqToCallback_.cmd.getSequenceNumbe…
16612 (devtools.DebuggerAgent.prototype.editScriptSource.requestBacktrace):
16613 (devtools.DebuggerAgent.prototype.editScriptSource.handleBacktraceResponse):
16614 (devtools.DebuggerAgent.prototype.editScriptSource.reportDidCommitEditing):
[all …]
/external/v8/test/cctest/
Dcctest.status68 test-debug/DebuggerAgent: SKIP
Dtest-debug.cc5829 TEST(DebuggerAgent) { in TEST() argument