Home
last modified time | relevance | path

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

12

/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DScriptDebugServer.cpp57 ClientDataImpl(PassOwnPtr<ScriptDebugServer::Task> task) : m_task(task) { } in ClientDataImpl()
59 ScriptDebugServer::Task* task() const { return m_task.get(); } in task()
61 OwnPtr<ScriptDebugServer::Task> m_task;
68 v8::Local<v8::Value> ScriptDebugServer::callDebuggerMethod(const char* functionName, int argc, v8::… in callDebuggerMethod()
76 ScriptDebugServer::ScriptDebugServer(v8::Isolate* isolate) in ScriptDebugServer() function in WebCore::ScriptDebugServer
84 ScriptDebugServer::~ScriptDebugServer() in ~ScriptDebugServer()
88 String ScriptDebugServer::setBreakpoint(const String& sourceID, const ScriptBreakpoint& scriptBreak… in setBreakpoint()
110 void ScriptDebugServer::removeBreakpoint(const String& breakpointId) in removeBreakpoint()
123 void ScriptDebugServer::clearBreakpoints() in clearBreakpoints()
134 void ScriptDebugServer::setBreakpointsActivated(bool activated) in setBreakpointsActivated()
[all …]
DScriptDebugServer.h57 class ScriptDebugServer {
58 WTF_MAKE_NONCOPYABLE(ScriptDebugServer);
115 explicit ScriptDebugServer(v8::Isolate*);
116 virtual ~ScriptDebugServer();
DPageScriptDebugServer.cpp101 : ScriptDebugServer(s_mainThreadIsolate) in PageScriptDebugServer()
164 ScriptDebugServer::interruptAndRun(task, s_mainThreadIsolate); in interruptAndRun()
176ScriptDebugServer::compileScript(scriptState, expression, sourceURL, scriptId, exceptionDetailsTex… in compileScript()
183 ScriptDebugServer::clearCompiledScripts(); in clearCompiledScripts()
201ScriptDebugServer::runScript(scriptState, scriptId, result, wasThrown, exceptionDetailsText, lineN… in runScript()
Dv8.gypi56 'ScriptDebugServer.cpp',
57 'ScriptDebugServer.h',
DWorkerScriptDebugServer.h42 class WorkerScriptDebugServer FINAL : public ScriptDebugServer {
DScriptPreprocessor.h42 class ScriptDebugServer; variable
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.cpp54 …InspectorRuntimeAgent(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebug… in InspectorRuntimeAgent()
67 static ScriptDebugServer::PauseOnExceptionsState setPauseOnExceptionsState(ScriptDebugServer* scrip… in setPauseOnExceptionsState()
70ScriptDebugServer::PauseOnExceptionsState presentState = scriptDebugServer->pauseOnExceptionsState… in setPauseOnExceptionsState()
81ScriptDebugServer::PauseOnExceptionsState previousPauseOnExceptionsState = ScriptDebugServer::Dont… in evaluate()
83 …eOnExceptionsState = setPauseOnExceptionsState(m_scriptDebugServer, ScriptDebugServer::DontPauseOn… in evaluate()
106ScriptDebugServer::PauseOnExceptionsState previousPauseOnExceptionsState = ScriptDebugServer::Dont… in callFunctionOn()
108 …eOnExceptionsState = setPauseOnExceptionsState(m_scriptDebugServer, ScriptDebugServer::DontPauseOn… in callFunctionOn()
128ScriptDebugServer::PauseOnExceptionsState previousPauseOnExceptionsState = setPauseOnExceptionsSta… in getProperties()
DInjectedScriptHost.h48 class ScriptDebugServer; variable
64 void init(InstrumentingAgents* instrumentingAgents, ScriptDebugServer* scriptDebugServer) in init()
94 ScriptDebugServer& scriptDebugServer() { return *m_scriptDebugServer; } in scriptDebugServer()
100 ScriptDebugServer* m_scriptDebugServer;
DInspectorRuntimeAgent.h46 class ScriptDebugServer; variable
88 InspectorRuntimeAgent(InjectedScriptManager*, ScriptDebugServer*);
105 ScriptDebugServer* m_scriptDebugServer;
DWorkerRuntimeAgent.h43 …rRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebug… in create()
59 WorkerRuntimeAgent(InjectedScriptManager*, ScriptDebugServer*, WorkerGlobalScope*);
DPageRuntimeAgent.h46 …eRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebug… in create()
59 PageRuntimeAgent(InjectedScriptManager*, ScriptDebugServer*, Page*, InspectorPageAgent*);
DInspectorDebuggerAgent.cpp125 …m_state->setLong(DebuggerAgentState::pauseOnExceptionsState, ScriptDebugServer::DontPauseOnExcepti… in init()
143 …m_state->setLong(DebuggerAgentState::pauseOnExceptionsState, ScriptDebugServer::DontPauseOnExcepti… in disable()
265 …ssertMessageType && scriptDebugServer().pauseOnExceptionsState() != ScriptDebugServer::DontPauseOn… in addMessageToConsole()
821 ScriptDebugServer::PauseOnExceptionsState pauseState; in setPauseOnExceptions()
823 pauseState = ScriptDebugServer::DontPauseOnExceptions; in setPauseOnExceptions()
825 pauseState = ScriptDebugServer::PauseOnAllExceptions; in setPauseOnExceptions()
827 pauseState = ScriptDebugServer::PauseOnUncaughtExceptions; in setPauseOnExceptions()
837 …scriptDebugServer().setPauseOnExceptionsState(static_cast<ScriptDebugServer::PauseOnExceptionsStat… in setPauseOnExceptionsImpl()
856ScriptDebugServer::PauseOnExceptionsState previousPauseOnExceptionsState = scriptDebugServer().pau… in evaluateOnCallFrame()
858 if (previousPauseOnExceptionsState != ScriptDebugServer::DontPauseOnExceptions) in evaluateOnCallFrame()
[all …]
DWorkerRuntimeAgent.cpp45 …t::WorkerRuntimeAgent(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebug… in WorkerRuntimeAgent()
DWorkerDebuggerAgent.cpp58 class RunInspectorCommandsTask FINAL : public ScriptDebugServer::Task {
DPageRuntimeAgent.cpp48 PageRuntimeAgent::PageRuntimeAgent(InjectedScriptManager* injectedScriptManager, ScriptDebugServer*… in PageRuntimeAgent()
DInspectorDebuggerAgent.h65 class ScriptDebugServer; variable
177 virtual ScriptDebugServer& scriptDebugServer() = 0;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
DV8InjectedScriptHostCustom.cpp222 ScriptDebugServer& debugServer = host->scriptDebugServer(); in functionDetailsMethodCustom()
238 ScriptDebugServer& debugServer = host->scriptDebugServer(); in getInternalPropertiesMethodCustom()
350 ScriptDebugServer& debugServer = host->scriptDebugServer(); in setFunctionVariableValueMethodCustom()
432 ScriptDebugServer& debugServer = host->scriptDebugServer(); in suppressWarningsAndCallMethodCustom()
/external/chromium_org/third_party/WebKit/Source/core/
Dwebcore_generated.target.darwin-arm.mk296 third_party/WebKit/Source/bindings/v8/ScriptDebugServer.cpp \
Dwebcore_generated.target.linux-mips.mk296 third_party/WebKit/Source/bindings/v8/ScriptDebugServer.cpp \
Dwebcore_generated.target.linux-x86_64.mk296 third_party/WebKit/Source/bindings/v8/ScriptDebugServer.cpp \
Dwebcore_generated.target.linux-arm.mk296 third_party/WebKit/Source/bindings/v8/ScriptDebugServer.cpp \
Dwebcore_generated.target.darwin-arm64.mk296 third_party/WebKit/Source/bindings/v8/ScriptDebugServer.cpp \
Dwebcore_generated.target.linux-x86.mk296 third_party/WebKit/Source/bindings/v8/ScriptDebugServer.cpp \

12