Home
last modified time | relevance | path

Searched refs:V8DebuggerId (Results 1 – 12 of 12) sorted by relevance

/third_party/node/deps/v8/src/inspector/
Dv8-debugger-id.cc13 V8DebuggerId::V8DebuggerId(std::pair<int64_t, int64_t> pair) in V8DebuggerId() function in v8_inspector::V8DebuggerId
16 std::unique_ptr<StringBuffer> V8DebuggerId::toString() const { in toString()
21 bool V8DebuggerId::isValid() const { return m_first || m_second; } in isValid()
23 std::pair<int64_t, int64_t> V8DebuggerId::pair() const { in pair()
29 V8DebuggerId::V8DebuggerId(std::pair<int64_t, int64_t> pair) in V8DebuggerId() function in v8_inspector::internal::V8DebuggerId
33 V8DebuggerId V8DebuggerId::generate(V8InspectorImpl* inspector) { in generate()
34 return V8DebuggerId(std::make_pair(inspector->generateUniqueId(), in generate()
38 V8DebuggerId::V8DebuggerId(const String16& debuggerId) { in V8DebuggerId() function in v8_inspector::internal::V8DebuggerId
47 m_debugger_id = v8_inspector::V8DebuggerId(std::make_pair(first, second)); in V8DebuggerId()
50 String16 V8DebuggerId::toString() const { in toString()
[all …]
Dv8-debugger-id.h19 class V8DebuggerId {
21 V8DebuggerId() = default;
22 explicit V8DebuggerId(std::pair<int64_t, int64_t>);
23 explicit V8DebuggerId(const String16&);
24 V8DebuggerId(const V8DebuggerId&) V8_NOEXCEPT = default;
25 V8DebuggerId& operator=(const V8DebuggerId&) V8_NOEXCEPT = default;
27 static V8DebuggerId generate(V8InspectorImpl*);
29 v8_inspector::V8DebuggerId toV8DebuggerId() const { return m_debugger_id; } in toV8DebuggerId()
35 v8_inspector::V8DebuggerId m_debugger_id;
Dinspected-context.h46 internal::V8DebuggerId uniqueId() const { return m_uniqueId; } in uniqueId()
76 const internal::V8DebuggerId m_uniqueId;
Dv8-stack-trace-impl.cc111 internal::V8DebuggerId(externalParent.debugger_id).toString()) in buildInspectorObjectCommon()
120 : id(0), debugger_id(internal::V8DebuggerId().pair()) {} in V8StackTraceId()
132 : id(0), debugger_id(internal::V8DebuggerId().pair()) { in V8StackTraceId()
151 internal::V8DebuggerId debuggerId(s); in V8StackTraceId()
164 dict->setString(kDebuggerId, internal::V8DebuggerId(debugger_id).toString()); in ToString()
Dv8-inspector-impl.h70 int resolveUniqueContextId(internal::V8DebuggerId uniqueId) const;
87 V8DebuggerId uniqueDebuggerId(int contextId) override;
Dv8-debugger.h132 internal::V8DebuggerId debuggerIdFor(int contextGroupId);
292 std::unordered_map<int, internal::V8DebuggerId> m_contextGroupIdToDebuggerId;
Dv8-inspector-impl.cc89 internal::V8DebuggerId uniqueId) const { in resolveUniqueContextId()
186 V8DebuggerId V8InspectorImpl::uniqueDebuggerId(int contextId) { in uniqueDebuggerId()
188 internal::V8DebuggerId unique_id; in uniqueDebuggerId()
Dinspected-context.cc59 m_uniqueId(internal::V8DebuggerId::generate(inspector)) { in InspectedContext()
Dv8-debugger.cc1155 internal::V8DebuggerId V8Debugger::debuggerIdFor(int contextGroupId) { in debuggerIdFor()
1158 internal::V8DebuggerId debuggerId = in debuggerIdFor()
1159 internal::V8DebuggerId::generate(m_inspector); in debuggerIdFor()
Dv8-debugger-agent-impl.cc852 internal::V8DebuggerId debuggerId; in getStackTrace()
855 internal::V8DebuggerId(inStackTraceId->getDebuggerId(String16())); in getStackTrace()
1535 internal::V8DebuggerId(externalParent.debugger_id).toString()) in currentExternalStackTrace()
Dv8-runtime-agent-impl.cc220 internal::V8DebuggerId uniqueId(uniqueContextId.fromJust()); in ensureContext()
/third_party/node/deps/v8/include/
Dv8-inspector.h27 class V8DebuggerId; variable
119 class V8_EXPORT V8DebuggerId {
121 V8DebuggerId() = default;
122 V8DebuggerId(const V8DebuggerId&) = default;
123 V8DebuggerId& operator=(const V8DebuggerId&) = default;
130 friend class internal::V8DebuggerId;
131 explicit V8DebuggerId(std::pair<int64_t, int64_t>);
323 virtual V8DebuggerId uniqueDebuggerId(int contextId) = 0;