Searched refs:DebuggerAgent (Results 1 – 16 of 16) sorted by relevance
/external/webkit/WebKit/chromium/src/js/ |
D | DebuggerAgent.js | 40 devtools.DebuggerAgent = function() class in devtools 133 devtools.DebuggerAgent.ScopeType = { 145 devtools.DebuggerAgent.prototype.reset = function() 164 devtools.DebuggerAgent.prototype.initUI = function() 197 devtools.DebuggerAgent.prototype.resolveScriptSource = function(scriptId, callback) 209 devtools.DebuggerAgent.sendCommand_(cmd); 229 devtools.DebuggerAgent.prototype.pauseExecution = function() 240 devtools.DebuggerAgent.prototype.addBreakpoint = function(sourceId, line, condition) 246 line = devtools.DebuggerAgent.webkitToV8LineNumber_(line); 289 devtools.DebuggerAgent.sendCommand_(cmd); [all …]
|
D | ProfilerAgent.js | 168 devtools.DebuggerAgent.sendCommand_(cmd); 185 devtools.DebuggerAgent.sendCommand_(cmd);
|
D | Tests.js | 492 this.addSniffer(devtools.DebuggerAgent.prototype, "reset", waitUntilScriptIsParsed); 510 … test.addSniffer(devtools.DebuggerAgent.prototype, "addScriptInfo_", waitUntilScriptIsParsed); 843 devtools.DebuggerAgent.prototype, 848 var line = devtools.DebuggerAgent.webkitToV8LineNumber_(breakpointLine); 865 this.addSniffer(devtools.DebuggerAgent.prototype, "handleScriptsResponse_", 890 devtools.DebuggerAgent.prototype, 982 this.addSniffer(devtools.DebuggerAgent.prototype, "handleScriptsResponse_", 998 devtools.DebuggerAgent.prototype,
|
D | DevTools.js | 66 this.debuggerAgent_ = new devtools.DebuggerAgent();
|
/external/v8/src/ |
D | debug-agent.h | 44 class DebuggerAgent: public Thread { 46 explicit DebuggerAgent(const char* name, int port) in DebuggerAgent() function 55 ~DebuggerAgent() { in ~DebuggerAgent() 79 static DebuggerAgent* instance_; 84 DISALLOW_COPY_AND_ASSIGN(DebuggerAgent); 92 DebuggerAgentSession(DebuggerAgent* agent, Socket* client) in DebuggerAgentSession() 103 DebuggerAgent* agent_;
|
D | debug-agent.cc | 39 DebuggerAgent::instance_->DebuggerMessage(message); in DebuggerAgentMessageHandler() 43 DebuggerAgent* DebuggerAgent::instance_ = NULL; 46 void DebuggerAgent::Run() { in Run() 84 void DebuggerAgent::Shutdown() { in Shutdown() 99 void DebuggerAgent::WaitUntilListening() { in WaitUntilListening() 103 void DebuggerAgent::CreateSession(Socket* client) { in CreateSession() 122 void DebuggerAgent::CloseSession() { in CloseSession() 135 void DebuggerAgent::DebuggerMessage(const v8::Debug::Message& message) { in DebuggerMessage() 147 void DebuggerAgent::OnSessionClosed(DebuggerAgentSession* session) { in OnSessionClosed()
|
D | debug.h | 695 static DebuggerAgent* agent_;
|
D | debug.cc | 1755 DebuggerAgent* Debugger::agent_ = NULL; 2504 agent_ = new DebuggerAgent(name, port); in StartAgent()
|
/external/webkit/WebKit/chromium/ |
D | ChangeLog | 123 * src/DebuggerAgent.h: 130 * src/js/DebuggerAgent.js: 131 (devtools.DebuggerAgent.prototype.addBreakpoint): 270 * src/js/DebuggerAgent.js: Added. 271 (devtools.DebuggerAgent): 272 (devtools.DebuggerAgent.prototype.reset): 273 (devtools.DebuggerAgent.prototype.initUI): 274 …(devtools.DebuggerAgent.prototype.resolveScriptSource.this.requestSeqToCallback_.cmd.getSequenceNu… 275 (devtools.DebuggerAgent.prototype.resolveScriptSource): 276 (devtools.DebuggerAgent.prototype.pauseExecution): [all …]
|
D | WebKit.gypi | 37 'src/js/DebuggerAgent.js',
|
D | WebKit.gyp | 217 'src/DebuggerAgent.h',
|
/external/webkit/WebKit/chromium/src/ |
D | DebuggerAgent.h | 45 DEFINE_RPC_CLASS(DebuggerAgent, DEBUGGER_AGENT_STRUCT)
|
D | DebuggerAgentImpl.h | 53 class DebuggerAgentImpl : public DebuggerAgent {
|
D | WebDevToolsFrontendImpl.cpp | 79 DEFINE_RPC_JS_BOUND_OBJ(DebuggerAgent, DEBUGGER_AGENT_STRUCT, DebuggerAgentDelegate, DEBUGGER_AGENT… in DEFINE_RPC_JS_BOUND_OBJ() argument
|
/external/v8/test/cctest/ |
D | cctest.status | 31 test-debug/DebuggerAgent: PASS, (PASS || FAIL) if $system == linux
|
D | test-debug.cc | 5037 TEST(DebuggerAgent) { in TEST() argument
|