/third_party/node/deps/v8/src/inspector/ |
H A D | v8-debugger-agent-impl.cc | 286 String16 scriptId = String16::fromInteger(iterator->GetScriptId()); local 307 .setScriptId(scriptId) 314 .setScriptId(scriptId) 514 return script.scriptId() == selector; in matches() 763 String16 scriptId = start->getScriptId(); in getPossibleBreakpoints() local 773 if (end.fromJust()->getScriptId() != scriptId) in getPossibleBreakpoints() 775 "Locations should contain the same scriptId"); in getPossibleBreakpoints() 783 auto it = m_scripts.find(scriptId); in getPossibleBreakpoints() 811 .setScriptId(scriptId) in getPossibleBreakpoints() 875 bool V8DebuggerAgentImpl::isFunctionBlackboxed(const String16& scriptId, in isFunctionBlackboxed() argument 909 shouldBeSkipped(const String16& scriptId, int line, int column) shouldBeSkipped() argument 941 setBreakpointImpl(const String16& breakpointId, const String16& scriptId, const String16& condition, int lineNumber, int columnNumber) setBreakpointImpl() argument 999 searchInContent( const String16& scriptId, const String16& query, Maybe<bool> optionalCaseSensitive, Maybe<bool> optionalIsRegex, std::unique_ptr<Array<protocol::Debugger::SearchMatch>>* results) searchInContent() argument 1015 setScriptSource( const String16& scriptId, const String16& newContent, Maybe<bool> dryRun, Maybe<protocol::Array<protocol::Debugger::CallFrame>>* newCallFrames, Maybe<bool>* stackChanged, Maybe<protocol::Runtime::StackTrace>* asyncStackTrace, Maybe<protocol::Runtime::StackTraceId>* asyncStackTraceId, Maybe<protocol::Runtime::ExceptionDetails>* optOutCompileError) setScriptSource() argument 1070 getScriptSource( const String16& scriptId, String16* scriptSource, Maybe<protocol::Binary>* bytecode) getScriptSource() argument 1102 getWasmBytecode(const String16& scriptId, protocol::Binary* bytecode) getWasmBytecode() argument 1404 setBlackboxedRanges( const String16& scriptId, std::unique_ptr<protocol::Array<protocol::Debugger::ScriptPosition>> inPositions) setBlackboxedRanges() argument 1614 String16 scriptId = script->scriptId(); didParseSource() local 1766 const String16 scriptId = didPauseOnInstrumentation() local 1988 String16 scriptId = range->getScriptId(); processSkipList() local [all...] |
H A D | v8-debugger-agent-impl.h | 75 const String16& scriptId, const String16& query, 98 Response getScriptSource(const String16& scriptId, String16* scriptSource, 100 Response getWasmBytecode(const String16& scriptId, 131 const String16& scriptId, 161 bool isFunctionBlackboxed(const String16& scriptId, 164 bool shouldBeSkipped(const String16& scriptId, int line, int column); 185 const String16& breakpointId, const String16& scriptId, 230 String16 scriptId; member
|
H A D | v8-debugger.h | 224 // We cache symbolized stack frames by (scriptId,lineNumber,columnNumber) 228 int scriptId; member 235 return a.scriptId == b.scriptId && a.lineNumber == b.lineNumber && in operator ()() 243 code = code * 31 + key.scriptId; in operator ()()
|
H A D | v8-console-message.h | 60 std::unique_ptr<V8StackTraceImpl>, int scriptId, v8::Isolate*, 88 int scriptId);
|
H A D | v8-stack-trace-impl.h | 30 StackFrame(String16&& functionName, int scriptId, String16&& sourceURL, 35 int scriptId() const;
|
H A D | v8-debugger.cc | 563 String16 scriptId = String16::fromInteger(script->Id()); in IsFunctionBlackboxed() local 566 [&hasAgents, &allBlackboxed, &scriptId, &start, in IsFunctionBlackboxed() 571 allBlackboxed &= agent->isFunctionBlackboxed(scriptId, start, end); in IsFunctionBlackboxed() 583 String16 scriptId = String16::fromInteger(script->Id()); in ShouldBeSkipped() local 586 [&hasAgents, &allShouldBeSkipped, &scriptId, line, in ShouldBeSkipped() 591 const bool skip = agent->shouldBeSkipped(scriptId, line, column); in ShouldBeSkipped() 1122 int scriptId = v8Frame->GetScriptId(); in symbolize() local 1126 CachedStackFrameKey key{scriptId, lineNumber, columnNumber}; in symbolize() 1143 std::move(functionName), scriptId, std::move(sourceURL), lineNumber, in symbolize()
|
H A D | v8-stack-trace-impl.cc | 172 StackFrame::StackFrame(String16&& functionName, int scriptId, in StackFrame() argument 176 m_scriptId(scriptId), in StackFrame() 187 int StackFrame::scriptId() const { return m_scriptId; } in scriptId() function in v8_inspector::StackFrame 310 int V8StackTraceImpl::topScriptId() const { return m_frames[0]->scriptId(); } in topScriptId()
|
H A D | v8-console-message.cc | 214 int scriptId) { in setLocation() 224 m_scriptId = scriptId; in setLocation() 490 std::unique_ptr<V8StackTraceImpl> stackTrace, int scriptId, in createForException() 496 std::move(stackTrace), scriptId); in createForException() 211 setLocation(const String16& url, unsigned lineNumber, unsigned columnNumber, std::unique_ptr<V8StackTraceImpl> stackTrace, int scriptId) setLocation() argument 487 createForException( double timestamp, const String16& detailedMessage, const String16& url, unsigned lineNumber, unsigned columnNumber, std::unique_ptr<V8StackTraceImpl> stackTrace, int scriptId, v8::Isolate* isolate, const String16& message, int contextId, v8::Local<v8::Value> exception, unsigned exceptionId) createForException() argument
|
H A D | v8-debugger-script.h | 63 const String16& scriptId() const { return m_id; } in scriptId() function in v8_inspector::V8DebuggerScript
|
H A D | v8-runtime-agent-impl.cc | 527 Maybe<int> executionContextId, Maybe<String16>* scriptId, in compileScript() 563 *scriptId = scriptValueId; in compileScript() 568 const String16& scriptId, Maybe<int> executionContextId, in runScript() 579 auto it = m_compiledScripts.find(scriptId); in runScript() 525 compileScript( const String16& expression, const String16& sourceURL, bool persistScript, Maybe<int> executionContextId, Maybe<String16>* scriptId, Maybe<protocol::Runtime::ExceptionDetails>* exceptionDetails) compileScript() argument 567 runScript( const String16& scriptId, Maybe<int> executionContextId, Maybe<String16> objectGroup, Maybe<bool> silent, Maybe<bool> includeCommandLineAPI, Maybe<bool> returnByValue, Maybe<bool> generatePreview, Maybe<bool> awaitPromise, std::unique_ptr<RunScriptCallback> callback) runScript() argument
|
H A D | v8-inspector-impl.h | 97 int scriptId) override;
|
H A D | v8-inspector-impl.cc | 265 std::unique_ptr<V8StackTrace> stackTrace, int scriptId) { in exceptionThrown() 275 scriptId, m_isolate, toString16(message), in exceptionThrown() 261 exceptionThrown( v8::Local<v8::Context> context, StringView message, v8::Local<v8::Value> exception, StringView detailedMessage, StringView url, unsigned lineNumber, unsigned columnNumber, std::unique_ptr<V8StackTrace> stackTrace, int scriptId) exceptionThrown() argument
|
H A D | value-mirror.cc | 715 location->setString("scriptId", String16::fromInteger(m_scriptId)); 740 int scriptId, int lineNumber, in create() 742 if (scriptId == v8::UnboundScript::kNoScriptId) return nullptr; in create() 748 new LocationMirror(value, scriptId, lineNumber, columnNumber)); in create() 751 LocationMirror(v8::Local<v8::Value> value, int scriptId, int lineNumber, in LocationMirror() argument 754 m_scriptId(scriptId), in LocationMirror() 739 create(v8::Local<v8::Value> value, int scriptId, int lineNumber, int columnNumber) create() argument
|
/third_party/node/lib/internal/debugger/ |
H A D | inspect_repl.js | 415 return selectedFrame && getCurrentLocation().scriptId === script.scriptId; 430 return `${isCurrent ? '*' : ' '} ${script.scriptId}: ${name}`; 475 const { scriptId, lineNumber, columnNumber, delta, scriptSource } = this; 494 if (scriptId === location.scriptId && 512 const { scriptId } = location; 513 const { scriptSource } = await Debugger.getScriptSource({ scriptId }); 548 location: { scriptId, lineNumber, columnNumber }, 553 const script = knownScripts[scriptId]; [all...] |
/third_party/node/test/common/ |
H A D | inspector-helper.js | 174 const { scriptId, url } = message.params; 175 this._scriptsIdsByUrl.set(scriptId, url); 179 this.mainScriptId = scriptId; 257 const scriptPath = this._scriptsIdsByUrl.get(location.scriptId);
|
/third_party/node/deps/v8/src/profiler/ |
H A D | heap-snapshot-generator.h | 49 SourceLocation(int entry_index, int scriptId, int line, int col) in SourceLocation() 50 : entry_index(entry_index), scriptId(scriptId), line(line), col(col) {} in SourceLocation() 53 const int scriptId; member 247 void AddLocation(HeapEntry* entry, int scriptId, int line, int col);
|
H A D | heap-snapshot-generator.cc | 446 void HeapSnapshot::AddLocation(HeapEntry* entry, int scriptId, int line, in AddLocation() argument 448 locations_.emplace_back(entry->index(), scriptId, line, col); in AddLocation() 794 int scriptId = script.id(); in ExtractLocationForJSFunction() local 798 snapshot_->AddLocation(entry, scriptId, info.line, info.column); in ExtractLocationForJSFunction() 3172 buffer_pos = utoa(location.scriptId, buffer, buffer_pos); in SerializeLocation()
|
/third_party/node/deps/v8/tools/profview/ |
H A D | profview.js | 1464 getScript(scriptId) { 1465 return this.scripts.get(scriptId); 1485 let scriptId = data.scriptId; 1486 let script = this.getScript(scriptId); 1517 constructor(scriptId, startScriptOffset, endScriptOffset) { 1518 this.scriptId = scriptId;
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-inspector.h | 362 int scriptId) = 0;
|
/third_party/node/deps/v8/include/ |
H A D | v8-inspector.h | 347 int scriptId) = 0;
|