• Home
  • Raw
  • Download

Lines Matching refs:V8Debugger

143 v8::MaybeLocal<v8::Value> V8Debugger::callDebuggerMethod(  in callDebuggerMethod()
162 V8Debugger::V8Debugger(v8::Isolate* isolate, V8InspectorImpl* inspector) in V8Debugger() function in v8_inspector::V8Debugger
175 V8Debugger::~V8Debugger() {} in ~V8Debugger()
177 void V8Debugger::enable() { in enable()
182 v8::debug::SetOutOfMemoryCallback(m_isolate, &V8Debugger::v8OOMCallback, in enable()
190 void V8Debugger::disable() { in disable()
203 bool V8Debugger::enabled() const { return !m_debuggerScript.IsEmpty(); } in enabled()
205 void V8Debugger::getCompiledScripts( in getCompiledScripts()
223 String16 V8Debugger::setBreakpoint(const ScriptBreakpoint& breakpoint, in setBreakpoint()
272 void V8Debugger::removeBreakpoint(const String16& breakpointId) { in removeBreakpoint()
296 void V8Debugger::clearBreakpoints() { in clearBreakpoints()
308 void V8Debugger::setBreakpointsActivated(bool activated) { in setBreakpointsActivated()
317 v8::debug::ExceptionBreakState V8Debugger::getPauseOnExceptionsState() { in getPauseOnExceptionsState()
322 void V8Debugger::setPauseOnExceptionsState( in setPauseOnExceptionsState()
330 void V8Debugger::setPauseOnNextStatement(bool pause) { in setPauseOnNextStatement()
338 bool V8Debugger::canBreakProgram() { in canBreakProgram()
343 void V8Debugger::breakProgram() { in breakProgram()
351 &V8Debugger::breakProgramCallback, in breakProgram()
359 void V8Debugger::continueProgram() { in continueProgram()
365 void V8Debugger::stepIntoStatement() { in stepIntoStatement()
372 void V8Debugger::stepOverStatement() { in stepOverStatement()
379 void V8Debugger::stepOutOfFunction() { in stepOutOfFunction()
386 Response V8Debugger::setScriptSource( in setScriptSource()
483 JavaScriptCallFrames V8Debugger::currentCallFrames(int limit) { in currentCallFrames()
507 static V8Debugger* toV8Debugger(v8::Local<v8::Value> data) { in toV8Debugger()
509 return static_cast<V8Debugger*>(p); in toV8Debugger()
512 void V8Debugger::breakProgramCallback( in breakProgramCallback()
515 V8Debugger* thisPtr = toV8Debugger(info.Data()); in breakProgramCallback()
526 void V8Debugger::handleProgramBreak(v8::Local<v8::Context> pausedContext, in handleProgramBreak()
575 void V8Debugger::v8OOMCallback(void* data) { in v8OOMCallback()
576 V8Debugger* thisPtr = static_cast<V8Debugger*>(data); in v8OOMCallback()
582 void V8Debugger::ScriptCompiled(v8::Local<v8::debug::Script> script, in ScriptCompiled()
595 void V8Debugger::BreakProgramRequested(v8::Local<v8::Context> pausedContext, in BreakProgramRequested()
609 void V8Debugger::ExceptionThrown(v8::Local<v8::Context> pausedContext, in ExceptionThrown()
619 bool V8Debugger::IsFunctionBlackboxed(v8::Local<v8::debug::Script> script, in IsFunctionBlackboxed()
628 void V8Debugger::PromiseEventOccurred(v8::debug::PromiseDebugActionType type, in PromiseEventOccurred()
661 V8StackTraceImpl* V8Debugger::currentAsyncCallChain() { in currentAsyncCallChain()
666 void V8Debugger::compileDebuggerScript() { in compileDebuggerScript()
690 v8::Local<v8::Context> V8Debugger::debuggerContext() const { in debuggerContext()
695 v8::MaybeLocal<v8::Value> V8Debugger::getTargetScopes( in getTargetScopes()
732 v8::MaybeLocal<v8::Value> V8Debugger::functionScopes( in functionScopes()
737 v8::MaybeLocal<v8::Value> V8Debugger::generatorScopes( in generatorScopes()
742 v8::MaybeLocal<v8::Array> V8Debugger::internalProperties( in internalProperties()
803 std::unique_ptr<V8StackTraceImpl> V8Debugger::createStackTrace( in createStackTrace()
813 void V8Debugger::setAsyncCallStackDepth(V8DebuggerAgentImpl* agent, int depth) { in setAsyncCallStackDepth()
830 void V8Debugger::registerAsyncTaskIfNeeded(void* task) { in registerAsyncTaskIfNeeded()
842 void V8Debugger::asyncTaskCreated(void* task, void* parentTask) { in asyncTaskCreated()
858 void V8Debugger::asyncTaskScheduled(const StringView& taskName, void* task, in asyncTaskScheduled()
864 void V8Debugger::asyncTaskScheduled(const String16& taskName, void* task, in asyncTaskScheduled()
882 void V8Debugger::asyncTaskCanceled(void* task) { in asyncTaskCanceled()
894 void V8Debugger::asyncTaskStarted(void* task) { in asyncTaskStarted()
917 void V8Debugger::asyncTaskFinished(void* task) { in asyncTaskFinished()
931 void V8Debugger::allAsyncTasksCanceled() { in allAsyncTasksCanceled()
943 void V8Debugger::muteScriptParsedEvents() { in muteScriptParsedEvents()
947 void V8Debugger::unmuteScriptParsedEvents() { in unmuteScriptParsedEvents()
952 std::unique_ptr<V8StackTraceImpl> V8Debugger::captureStackTrace( in captureStackTrace()