/third_party/node/deps/v8/src/inspector/ |
D | v8-inspector-impl.cc | 64 : m_isolate(isolate), in V8InspectorImpl() 70 v8::debug::SetInspector(m_isolate, this); in V8InspectorImpl() 71 v8::debug::SetConsoleDelegate(m_isolate, console()); in V8InspectorImpl() 75 v8::debug::SetInspector(m_isolate, nullptr); in ~V8InspectorImpl() 76 v8::debug::SetConsoleDelegate(m_isolate, nullptr); in ~V8InspectorImpl() 97 if (!v8::debug::CompileInspectorScript(m_isolate, source) in compileAndRunInternalScript() 100 v8::MicrotasksScope microtasksScope(m_isolate, in compileAndRunInternalScript() 103 v8::Isolate::SafeForTerminationScope allowTermination(m_isolate); in compileAndRunInternalScript() 110 v8::ScriptOrigin origin(m_isolate, toV8String(m_isolate, fileName), 0, 0, in compileScript() 112 v8::ScriptCompiler::Source source(toV8String(m_isolate, code), origin); in compileScript() [all …]
|
D | v8-debugger-script.cc | 108 v8::HandleScope scope(m_isolate); in source() 110 if (!m_scriptSource.Get(m_isolate)->JavaScriptCode().ToLocal(&v8Source)) { in source() 117 v8Source->Write(m_isolate, reinterpret_cast<uint16_t*>(buffer.get()), in source() 125 v8::HandleScope scope(m_isolate); in wasmBytecode() 127 if (m_scriptSource.Get(m_isolate)->WasmBytecode().To(&bytecode)) { in wasmBytecode() 164 return static_cast<int>(m_scriptSource.Get(m_isolate)->Length()); in length() 177 v8::EscapableHandleScope scope(m_isolate); in setSource() 178 v8::Local<v8::String> v8Source = toV8String(m_isolate, newSource); in setSource() 179 if (!m_script.Get(m_isolate)->SetScriptSource(v8Source, preview, result)) { in setSource() 194 v8::HandleScope scope(m_isolate); in getPossibleBreakpoints() [all …]
|
D | v8-debugger.cc | 73 : m_isolate(isolate), in V8Debugger() 85 m_isolate->RemoveCallCompletedCallback( in ~V8Debugger() 87 m_isolate->RemoveMicrotasksCompletedCallback( in ~V8Debugger() 93 v8::HandleScope scope(m_isolate); in enable() 94 v8::debug::SetDebugDelegate(m_isolate, this); in enable() 95 m_isolate->AddNearHeapLimitCallback(&V8Debugger::nearHeapLimitCallback, this); in enable() 96 v8::debug::ChangeBreakOnException(m_isolate, v8::debug::NoBreakOnException); in enable() 99 v8::debug::TierDownAllModulesPerIsolate(m_isolate); in enable() 124 v8::debug::TierUpAllModulesPerIsolate(m_isolate); in disable() 126 v8::debug::SetDebugDelegate(m_isolate, nullptr); in disable() [all …]
|
D | v8-heap-profiler-agent-impl.cc | 162 : m_isolate(isolate), m_async_gc(async_gc) {} in GCTask() 170 m_isolate, v8::EmbedderHeapTracer::EmbedderStackState::kNoHeapPointers); in Run() 178 v8::Isolate* m_isolate; member in v8_inspector::V8HeapProfilerAgentImpl::GCTask 186 m_isolate(session->inspector()->isolate()), in V8HeapProfilerAgentImpl() 221 ->GetForegroundTaskRunner(m_isolate) in collectGarbage() 222 ->PostNonNestableTask(std::make_unique<GCTask>(m_isolate, m_async_gc)); in collectGarbage() 256 v8::HeapProfiler* profiler = m_isolate->GetHeapProfiler(); in disable() 259 m_isolate->GetHeapProfiler()->ClearObjectIds(); in disable() 267 v8::HeapProfiler* profiler = m_isolate->GetHeapProfiler(); in takeHeapSnapshot() 291 v8::HandleScope handles(m_isolate); in getObjectByHeapObjectId() [all …]
|
D | v8-profiler-agent-impl.cc | 174 m_isolate(m_session->inspector()->isolate()), in V8ProfilerAgentImpl() 328 C::SelectMode(m_isolate, mode); in startPreciseCoverage() 337 v8::debug::Coverage::SelectMode(m_isolate, in stopPreciseCoverage() 419 v8::HandleScope handle_scope(m_isolate); in takePreciseCoverage() 420 v8::debug::Coverage coverage = v8::debug::Coverage::CollectPrecise(m_isolate); in takePreciseCoverage() 435 v8::HandleScope handle_scope(m_isolate); in triggerPreciseCoverageDeltaUpdate() 436 v8::debug::Coverage coverage = v8::debug::Coverage::CollectPrecise(m_isolate); in triggerPreciseCoverageDeltaUpdate() 447 v8::HandleScope handle_scope(m_isolate); in getBestEffortCoverage() 449 v8::debug::Coverage::CollectBestEffort(m_isolate); in getBestEffortCoverage() 501 v8::debug::TypeProfile::SelectMode(m_isolate, in startTypeProfile() [all …]
|
D | v8-debugger-agent-impl.cc | 376 m_isolate(m_inspector->isolate()) {} in V8DebuggerAgentImpl() 441 v8::debug::RemoveBreakpoint(m_isolate, it.first); in disable() 656 toV8String(m_isolate, optionalCondition.fromMaybe(String16())); in setBreakpointOnFunctionCall() 752 v8::debug::RemoveBreakpoint(m_isolate, id); in removeBreakpointImpl() 787 v8::HandleScope handleScope(m_isolate); in getPossibleBreakpoints() 794 v8::MicrotasksScope microtasks(m_isolate, in getPossibleBreakpoints() 796 v8::TryCatch tryCatch(m_isolate); in getPossibleBreakpoints() 837 v8::HandleScope handleScope(m_isolate); in continueToLocation() 945 v8::HandleScope handles(m_isolate); in setBreakpointImpl() 1003 v8::HandleScope handles(m_isolate); in searchInContent() [all …]
|
D | v8-inspector-impl.h | 64 v8::Isolate* isolate() const { return m_isolate; } in isolate() 152 v8::Isolate* m_isolate; variable 158 v8::Isolate* m_isolate;
|
D | v8-console.cc | 44 m_isolate(inspector->isolate()), in ConsoleHelper() 45 m_context(m_isolate->GetCurrentContext()), in ConsoleHelper() 83 if (!m_info.Length()) arguments.push_back(toV8String(m_isolate, message)); in reportCallWithDefaultArgument() 90 arguments.push_back(toV8String(m_isolate, message)); in reportCallAndReplaceFirstArgument() 97 toV8String(m_isolate, message)); in reportCallWithArgument() 108 consoleContextToString(m_isolate, m_consoleContext), in reportCall() 119 toV8String(m_isolate, message)); in reportDeprecatedCall() 162 v8::Isolate* m_isolate; member in v8_inspector::__anona1ef3f1b0111::ConsoleHelper
|
D | v8-debugger.h | 54 v8::Isolate* isolate() const { return m_isolate; } in isolate() 210 v8::Isolate* m_isolate; variable
|
D | v8-heap-profiler-agent-impl.h | 73 v8::Isolate* m_isolate; variable
|
D | v8-profiler-agent-impl.h | 75 v8::Isolate* m_isolate; variable
|
D | v8-debugger-agent-impl.h | 170 v8::Isolate* isolate() { return m_isolate; } in isolate() 219 v8::Isolate* m_isolate; variable
|
D | v8-console-message.cc | 89 m_isolate(context->GetIsolate()), in V8ValueStringBuilder() 159 bool result = append(symbol->Description(m_isolate), IgnoreUndefined); in append() 176 m_builder.append(toProtocolString(m_isolate, string)); in append() 187 v8::Isolate* m_isolate; member in v8_inspector::__anon35a461ed0111::V8ValueStringBuilder
|
D | v8-debugger-script.h | 121 v8::Isolate* m_isolate; variable
|