Home
last modified time | relevance | path

Searched refs:scriptId (Results 1 – 18 of 18) sorted by relevance

/external/v8/src/inspector/
Dv8-debugger-agent-impl.cc273 String16 scriptId = String16::fromInteger(iterator->GetScriptId()); in buildScopes() local
294 .setScriptId(scriptId) in buildScopes()
301 .setScriptId(scriptId) in buildScopes()
489 return script.scriptId() == selector; in matches()
723 String16 scriptId = start->getScriptId(); in getPossibleBreakpoints() local
733 if (end.fromJust()->getScriptId() != scriptId) in getPossibleBreakpoints()
743 auto it = m_scripts.find(scriptId); in getPossibleBreakpoints()
771 .setScriptId(scriptId) in getPossibleBreakpoints()
834 bool V8DebuggerAgentImpl::isFunctionBlackboxed(const String16& scriptId, in isFunctionBlackboxed() argument
837 ScriptsMap::iterator it = m_scripts.find(scriptId); in isFunctionBlackboxed()
[all …]
Dv8-debugger-agent-impl.h73 const String16& scriptId, const String16& query,
96 Response getScriptSource(const String16& scriptId, String16* scriptSource,
98 Response getWasmBytecode(const String16& scriptId,
134 const String16& scriptId,
162 bool isFunctionBlackboxed(const String16& scriptId,
165 bool shouldBeSkipped(const String16& scriptId, int line, int column);
184 const String16& breakpointId, const String16& scriptId,
Dv8-console-message.h59 std::unique_ptr<V8StackTraceImpl>, int scriptId, v8::Isolate*,
87 int scriptId);
Dv8-debugger-script.h56 const String16& scriptId() const { return m_id; } in scriptId() function
Dv8-debugger.cc566 String16 scriptId = String16::fromInteger(script->Id()); in IsFunctionBlackboxed() local
569 [&hasAgents, &allBlackboxed, &scriptId, &start, in IsFunctionBlackboxed()
574 allBlackboxed &= agent->isFunctionBlackboxed(scriptId, start, end); in IsFunctionBlackboxed()
586 String16 scriptId = String16::fromInteger(script->Id()); in ShouldBeSkipped() local
589 [&hasAgents, &allShouldBeSkipped, &scriptId, line, in ShouldBeSkipped()
594 const bool skip = agent->shouldBeSkipped(scriptId, line, column); in ShouldBeSkipped()
Dv8-console-message.cc211 int scriptId) { in setLocation() argument
216 m_scriptId = scriptId; in setLocation()
463 std::unique_ptr<V8StackTraceImpl> stackTrace, int scriptId, in createForException() argument
469 std::move(stackTrace), scriptId); in createForException()
Dv8-stack-trace-impl.h29 const String16& scriptId() const;
Dv8-runtime-agent-impl.cc494 Maybe<int> executionContextId, Maybe<String16>* scriptId, in compileScript() argument
529 *scriptId = scriptValueId; in compileScript()
534 const String16& scriptId, Maybe<int> executionContextId, in runScript() argument
545 auto it = m_compiledScripts.find(scriptId); in runScript()
Dv8-inspector-impl.h93 int scriptId) override;
Dv8-stack-trace-impl.cc192 const String16& StackFrame::scriptId() const { return m_scriptId; } in scriptId() function in v8_inspector::StackFrame
318 return toStringView(m_frames[0]->scriptId()); in topScriptId()
Dv8-inspector-impl.cc259 std::unique_ptr<V8StackTrace> stackTrace, int scriptId) { in exceptionThrown() argument
269 scriptId, m_isolate, toString16(message), in exceptionThrown()
Dvalue-mirror.cc782 int scriptId, int lineNumber, in create() argument
784 if (scriptId == v8::UnboundScript::kNoScriptId) return nullptr; in create()
790 new LocationMirror(value, scriptId, lineNumber, columnNumber)); in create()
793 LocationMirror(v8::Local<v8::Value> value, int scriptId, int lineNumber, in LocationMirror() argument
796 m_scriptId(scriptId), in LocationMirror()
/external/autotest/frontend/client/src/autotest/common/
DPaddedJsonRpcProxy.java132 String scriptId = SCRIPT_TAG_PREFIX + requestId; in addScript() local
133 Element scriptElement = addScriptToDocument(scriptId, url); in addScript()
/external/v8/src/profiler/
Dheap-snapshot-generator.h44 SourceLocation(int entry_index, int scriptId, int line, int col) in SourceLocation()
45 : entry_index(entry_index), scriptId(scriptId), line(line), col(col) {} in SourceLocation()
48 const int scriptId; member
214 void AddLocation(HeapEntry* entry, int scriptId, int line, int col);
Dheap-snapshot-generator.cc243 void HeapSnapshot::AddLocation(HeapEntry* entry, int scriptId, int line, in AddLocation() argument
245 locations_.emplace_back(entry->index(), scriptId, line, col); in AddLocation()
580 int scriptId = script.id(); in ExtractLocationForJSFunction() local
584 snapshot_->AddLocation(entry, scriptId, info.line, info.column); in ExtractLocationForJSFunction()
2742 buffer_pos = utoa(location.scriptId, buffer, buffer_pos); in SerializeLocation()
/external/v8/include/
Djs_protocol.pdl76 Runtime.ScriptId scriptId
91 Runtime.ScriptId scriptId
151 Runtime.ScriptId scriptId
229 # Returns possible locations for breakpoint. scriptId in start and end range locations should be
248 Runtime.ScriptId scriptId
259 Runtime.ScriptId scriptId
311 Runtime.ScriptId scriptId
344 Runtime.ScriptId scriptId
438 Runtime.ScriptId scriptId
556 Runtime.ScriptId scriptId
[all …]
Dv8-inspector.h288 int scriptId) = 0;
/external/v8/
DChangeLog44591 Added scriptId to StackTrace frames (issue 2865).