Home
last modified time | relevance | path

Searched refs:ScriptDebugServer (Results 1 – 25 of 32) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DScriptDebugServer.cpp58 ClientDataImpl(PassOwnPtr<ScriptDebugServer::Task> task) : m_task(task) { } in ClientDataImpl()
60 ScriptDebugServer::Task* task() const { return m_task.get(); } in task()
62 OwnPtr<ScriptDebugServer::Task> m_task;
69 v8::Local<v8::Value> ScriptDebugServer::callDebuggerMethod(const char* functionName, int argc, v8::… in callDebuggerMethod()
77 ScriptDebugServer::ScriptDebugServer(v8::Isolate* isolate) in ScriptDebugServer() function in blink::ScriptDebugServer
85 ScriptDebugServer::~ScriptDebugServer() in ~ScriptDebugServer()
89 String ScriptDebugServer::setBreakpoint(const String& sourceID, const ScriptBreakpoint& scriptBreak… in setBreakpoint()
111 void ScriptDebugServer::removeBreakpoint(const String& breakpointId) in removeBreakpoint()
124 void ScriptDebugServer::clearBreakpoints() in clearBreakpoints()
135 void ScriptDebugServer::setBreakpointsActivated(bool activated) in setBreakpointsActivated()
[all …]
DScriptDebugServer.h56 class ScriptDebugServer {
57 WTF_MAKE_NONCOPYABLE(ScriptDebugServer);
119 explicit ScriptDebugServer(v8::Isolate*);
120 virtual ~ScriptDebugServer();
DPageScriptDebugServer.cpp100 : ScriptDebugServer(s_mainThreadIsolate) in PageScriptDebugServer()
163 ScriptDebugServer::interruptAndRun(task, s_mainThreadIsolate); in interruptAndRun()
175ScriptDebugServer::compileScript(scriptState, expression, sourceURL, scriptId, exceptionDetailsTex… in compileScript()
182 ScriptDebugServer::clearCompiledScripts(); in clearCompiledScripts()
200ScriptDebugServer::runScript(scriptState, scriptId, result, wasThrown, exceptionDetailsText, lineN… in runScript()
DWorkerScriptDebugServer.h42 class WorkerScriptDebugServer FINAL : public ScriptDebugServer {
DScriptPreprocessor.h42 class ScriptDebugServer; variable
Dv8.gypi60 'ScriptDebugServer.cpp',
61 'ScriptDebugServer.h',
DPageScriptDebugServer.h47 class PageScriptDebugServer FINAL : public ScriptDebugServer {
DWorkerScriptDebugServer.cpp46 : ScriptDebugServer(v8::Isolate::GetCurrent()) in WorkerScriptDebugServer()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorRuntimeAgent.cpp50 …InspectorRuntimeAgent(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebug… in InspectorRuntimeAgent()
69 static ScriptDebugServer::PauseOnExceptionsState setPauseOnExceptionsState(ScriptDebugServer* scrip… in setPauseOnExceptionsState()
72ScriptDebugServer::PauseOnExceptionsState presentState = scriptDebugServer->pauseOnExceptionsState… in setPauseOnExceptionsState()
83ScriptDebugServer::PauseOnExceptionsState previousPauseOnExceptionsState = ScriptDebugServer::Dont… in evaluate()
85 …eOnExceptionsState = setPauseOnExceptionsState(m_scriptDebugServer, ScriptDebugServer::DontPauseOn… in evaluate()
108ScriptDebugServer::PauseOnExceptionsState previousPauseOnExceptionsState = ScriptDebugServer::Dont… in callFunctionOn()
110 …eOnExceptionsState = setPauseOnExceptionsState(m_scriptDebugServer, ScriptDebugServer::DontPauseOn… in callFunctionOn()
130ScriptDebugServer::PauseOnExceptionsState previousPauseOnExceptionsState = setPauseOnExceptionsSta… in getProperties()
DInjectedScriptHost.h48 class ScriptDebugServer; variable
66 void init(InstrumentingAgents* instrumentingAgents, ScriptDebugServer* scriptDebugServer) in init()
96 ScriptDebugServer& scriptDebugServer() { return *m_scriptDebugServer; } in scriptDebugServer()
102 ScriptDebugServer* m_scriptDebugServer;
DInspectorRuntimeAgent.h46 class ScriptDebugServer; variable
90 InspectorRuntimeAgent(InjectedScriptManager*, ScriptDebugServer*);
107 ScriptDebugServer* m_scriptDebugServer;
DWorkerRuntimeAgent.h43 …rRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebug… in create()
60 WorkerRuntimeAgent(InjectedScriptManager*, ScriptDebugServer*, WorkerGlobalScope*);
DPageRuntimeAgent.h47 …ectedScriptManager* injectedScriptManager, InspectorClient* client, ScriptDebugServer* scriptDebug… in create()
62 …PageRuntimeAgent(InjectedScriptManager*, InspectorClient*, ScriptDebugServer*, Page*, InspectorPag…
DInspectorDebuggerAgent.cpp148 …m_state->setLong(DebuggerAgentState::pauseOnExceptionsState, ScriptDebugServer::DontPauseOnExcepti… in init()
166 …m_state->setLong(DebuggerAgentState::pauseOnExceptionsState, ScriptDebugServer::DontPauseOnExcepti… in disable()
292 …ssertMessageType && scriptDebugServer().pauseOnExceptionsState() != ScriptDebugServer::DontPauseOn… in addMessageToConsole()
1002 ScriptDebugServer::PauseOnExceptionsState pauseState; in setPauseOnExceptions()
1004 pauseState = ScriptDebugServer::DontPauseOnExceptions; in setPauseOnExceptions()
1006 pauseState = ScriptDebugServer::PauseOnAllExceptions; in setPauseOnExceptions()
1008 pauseState = ScriptDebugServer::PauseOnUncaughtExceptions; in setPauseOnExceptions()
1018 …scriptDebugServer().setPauseOnExceptionsState(static_cast<ScriptDebugServer::PauseOnExceptionsStat… in setPauseOnExceptionsImpl()
1037ScriptDebugServer::PauseOnExceptionsState previousPauseOnExceptionsState = scriptDebugServer().pau… in evaluateOnCallFrame()
1039 if (previousPauseOnExceptionsState != ScriptDebugServer::DontPauseOnExceptions) in evaluateOnCallFrame()
[all …]
DWorkerDebuggerAgent.cpp44 class RunInspectorCommandsTask FINAL : public ScriptDebugServer::Task {
DWorkerRuntimeAgent.cpp44 …t::WorkerRuntimeAgent(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebug… in WorkerRuntimeAgent()
DPageRuntimeAgent.cpp49 …ectedScriptManager* injectedScriptManager, InspectorClient* client, ScriptDebugServer* scriptDebug… in PageRuntimeAgent()
DInspectorDebuggerAgent.h69 class ScriptDebugServer; variable
202 virtual ScriptDebugServer& scriptDebugServer() = 0;
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
DV8InjectedScriptHostCustom.cpp216 ScriptDebugServer& debugServer = host->scriptDebugServer(); in functionDetailsMethodCustom()
232 ScriptDebugServer& debugServer = host->scriptDebugServer(); in collectionEntriesMethodCustom()
244 ScriptDebugServer& debugServer = host->scriptDebugServer(); in getInternalPropertiesMethodCustom()
388 ScriptDebugServer& debugServer = host->scriptDebugServer(); in setFunctionVariableValueMethodCustom()
495 ScriptDebugServer& debugServer = host->scriptDebugServer(); in suppressWarningsAndCallFunctionMethodCustom()
/external/chromium_org/third_party/WebKit/Source/core/
Dwebcore_generated.target.darwin-x86.mk287 third_party/WebKit/Source/bindings/core/v8/ScriptDebugServer.cpp \
Dwebcore_generated.target.darwin-x86_64.mk287 third_party/WebKit/Source/bindings/core/v8/ScriptDebugServer.cpp \
Dwebcore_generated.target.linux-arm.mk287 third_party/WebKit/Source/bindings/core/v8/ScriptDebugServer.cpp \
Dwebcore_generated.target.darwin-arm.mk287 third_party/WebKit/Source/bindings/core/v8/ScriptDebugServer.cpp \
Dwebcore_generated.target.darwin-arm64.mk287 third_party/WebKit/Source/bindings/core/v8/ScriptDebugServer.cpp \
Dwebcore_generated.target.linux-mips64.mk287 third_party/WebKit/Source/bindings/core/v8/ScriptDebugServer.cpp \

12