/external/v8/src/inspector/ |
D | v8-inspector-impl.cc | 59 : m_isolate(isolate), in V8InspectorImpl() 65 m_isolateId(v8::debug::GetNextRandomInt64(m_isolate)) { in V8InspectorImpl() 66 v8::debug::SetInspector(m_isolate, this); in V8InspectorImpl() 67 v8::debug::SetConsoleDelegate(m_isolate, console()); in V8InspectorImpl() 71 v8::debug::SetInspector(m_isolate, nullptr); in ~V8InspectorImpl() 72 v8::debug::SetConsoleDelegate(m_isolate, nullptr); in ~V8InspectorImpl() 87 if (!v8::debug::CompileInspectorScript(m_isolate, source) in compileAndRunInternalScript() 90 v8::MicrotasksScope microtasksScope(m_isolate, in compileAndRunInternalScript() 93 v8::Isolate::SafeForTerminationScope allowTermination(m_isolate); in compileAndRunInternalScript() 101 toV8String(m_isolate, fileName), v8::Integer::New(m_isolate, 0), in compileScript() [all …]
|
D | v8-debugger.cc | 104 : m_isolate(isolate), in V8Debugger() 114 m_isolate->RemoveCallCompletedCallback( in ~V8Debugger() 116 m_isolate->RemoveMicrotasksCompletedCallback( in ~V8Debugger() 122 v8::HandleScope scope(m_isolate); in enable() 123 v8::debug::SetDebugDelegate(m_isolate, this); in enable() 124 m_isolate->AddNearHeapLimitCallback(&V8Debugger::nearHeapLimitCallback, this); in enable() 125 v8::debug::ChangeBreakOnException(m_isolate, v8::debug::NoBreakOnException); in enable() 127 v8::debug::TierDownAllModulesPerIsolate(m_isolate); in enable() 150 v8::debug::TierUpAllModulesPerIsolate(m_isolate); in disable() 151 v8::debug::SetDebugDelegate(m_isolate, nullptr); in disable() [all …]
|
D | v8-debugger-script.cc | 108 v8::HandleScope scope(m_isolate); in source() 115 v8Source->Write(m_isolate, reinterpret_cast<uint16_t*>(buffer.get()), in source() 120 v8::HandleScope scope(m_isolate); in wasmBytecode() 157 v8::HandleScope scope(m_isolate); in length() 172 v8::EscapableHandleScope scope(m_isolate); in setSource() 173 v8::Local<v8::String> v8Source = toV8String(m_isolate, newSource); in setSource() 174 if (!m_script.Get(m_isolate)->SetScriptSource(v8Source, preview, result)) { in setSource() 189 v8::HandleScope scope(m_isolate); in getPossibleBreakpoints() 190 v8::Local<v8::debug::Script> script = m_script.Get(m_isolate); in getPossibleBreakpoints() 225 v8::HandleScope scope(m_isolate); in resetBlackboxedStateCache() [all …]
|
D | v8-heap-profiler-agent-impl.cc | 156 : m_isolate(isolate), m_async_gc(async_gc) {} in GCTask() 164 m_isolate, v8::EmbedderHeapTracer::EmbedderStackState::kNoHeapPointers); in Run() 172 v8::Isolate* m_isolate; member in v8_inspector::V8HeapProfilerAgentImpl::GCTask 180 m_isolate(session->inspector()->isolate()), in V8HeapProfilerAgentImpl() 215 ->GetForegroundTaskRunner(m_isolate) in collectGarbage() 216 ->PostNonNestableTask(std::make_unique<GCTask>(m_isolate, m_async_gc)); in collectGarbage() 248 v8::HeapProfiler* profiler = m_isolate->GetHeapProfiler(); in disable() 251 m_isolate->GetHeapProfiler()->ClearObjectIds(); in disable() 258 v8::HeapProfiler* profiler = m_isolate->GetHeapProfiler(); in takeHeapSnapshot() 281 v8::HandleScope handles(m_isolate); in getObjectByHeapObjectId() [all …]
|
D | v8-profiler-agent-impl.cc | 177 m_isolate(m_session->inspector()->isolate()), in V8ProfilerAgentImpl() 352 C::SelectMode(m_isolate, mode); in startPreciseCoverage() 361 v8::debug::Coverage::SelectMode(m_isolate, in stopPreciseCoverage() 443 v8::HandleScope handle_scope(m_isolate); in takePreciseCoverage() 444 v8::debug::Coverage coverage = v8::debug::Coverage::CollectPrecise(m_isolate); in takePreciseCoverage() 460 v8::HandleScope handle_scope(m_isolate); in triggerPreciseCoverageDeltaUpdate() 461 v8::debug::Coverage coverage = v8::debug::Coverage::CollectPrecise(m_isolate); in triggerPreciseCoverageDeltaUpdate() 473 v8::HandleScope handle_scope(m_isolate); in getBestEffortCoverage() 475 v8::debug::Coverage::CollectBestEffort(m_isolate); in getBestEffortCoverage() 527 v8::debug::TypeProfile::SelectMode(m_isolate, in startTypeProfile() [all …]
|
D | v8-debugger-agent-impl.cc | 352 m_isolate(m_inspector->isolate()) {} in V8DebuggerAgentImpl() 416 v8::debug::RemoveBreakpoint(m_isolate, it.first); in disable() 624 toV8String(m_isolate, optionalCondition.fromMaybe(String16())); in setBreakpointOnFunctionCall() 712 v8::debug::RemoveBreakpoint(m_isolate, id); in removeBreakpointImpl() 747 v8::HandleScope handleScope(m_isolate); in getPossibleBreakpoints() 754 v8::MicrotasksScope microtasks(m_isolate, in getPossibleBreakpoints() 756 v8::TryCatch tryCatch(m_isolate); in getPossibleBreakpoints() 797 v8::HandleScope handleScope(m_isolate); in continueToLocation() 904 v8::HandleScope handles(m_isolate); in setBreakpointImpl() 955 v8::HandleScope handles(m_isolate); in searchInContent() [all …]
|
D | v8-inspector-impl.h | 63 v8::Isolate* isolate() const { return m_isolate; } in isolate() 143 v8::Isolate* m_isolate; variable 151 v8::Isolate* m_isolate; variable
|
D | v8-console.cc | 40 m_isolate(inspector->isolate()), in ConsoleHelper() 41 m_context(m_isolate->GetCurrentContext()), in ConsoleHelper() 75 if (!m_info.Length()) arguments.push_back(toV8String(m_isolate, message)); in reportCallWithDefaultArgument() 82 arguments.push_back(toV8String(m_isolate, message)); in reportCallAndReplaceFirstArgument() 89 toV8String(m_isolate, message)); in reportCallWithArgument() 100 consoleContextToString(m_isolate, m_consoleContext), in reportCall() 111 toV8String(m_isolate, message)); in reportDeprecatedCall() 154 v8::Isolate* m_isolate; member in v8_inspector::__anona02ddf380111::ConsoleHelper
|
D | v8-heap-profiler-agent-impl.h | 68 v8::Isolate* m_isolate; variable
|
D | v8-debugger.h | 71 v8::Isolate* isolate() const { return m_isolate; } in isolate() 221 v8::Isolate* m_isolate; variable
|
D | v8-debugger-script.h | 112 v8::Isolate* m_isolate; variable
|
D | v8-profiler-agent-impl.h | 86 v8::Isolate* m_isolate; variable
|
D | v8-debugger-agent-impl.h | 171 v8::Isolate* isolate() { return m_isolate; } in isolate() 219 v8::Isolate* m_isolate; variable
|
D | v8-console-message.cc | 85 m_isolate(context->GetIsolate()), in V8ValueStringBuilder() 173 m_builder.append(toProtocolString(m_isolate, string)); in append() 184 v8::Isolate* m_isolate; member in v8_inspector::__anon8a9bcf0a0111::V8ValueStringBuilder
|
/external/pdfium/fxjs/ |
D | cjs_runtime.cpp | 50 pExternalIsolate = static_cast<v8::Isolate*>(pPlatform->m_isolate); in CJS_Runtime()
|
/external/v8/include/ |
D | v8-inspector.h | 322 v8::Isolate* m_isolate; variable
|
/external/pdfium/public/ |
D | fpdf_formfill.h | 316 void* m_isolate; /* Unused in v3, retain for compatibility. */ member
|
/external/pdfium/testing/ |
D | embedder_test.cpp | 246 platform->m_isolate = external_isolate_; in SetupFormFillEnvironment()
|