Home | History | Annotate | Download | only in inspector

Lines Matching refs:V8Debugger

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