Home
last modified time | relevance | path

Searched refs:RemoteObjectId (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/inspector/
Dremote-object-id.cc29 RemoteObjectId::RemoteObjectId() : RemoteObjectIdBase(), m_id(0) {} in RemoteObjectId() function in v8_inspector::RemoteObjectId
31 Response RemoteObjectId::parse(const String16& objectId, in parse()
32 std::unique_ptr<RemoteObjectId>* result) { in parse()
33 std::unique_ptr<RemoteObjectId> remoteObjectId(new RemoteObjectId()); in parse()
Dremote-object-id.h28 class RemoteObjectId final : public RemoteObjectIdBase {
30 static Response parse(const String16&, std::unique_ptr<RemoteObjectId>*);
31 ~RemoteObjectId() {} in ~RemoteObjectId()
35 RemoteObjectId();
Dinjected-script.h48 class RemoteObjectId; variable
97 Response findObject(const RemoteObjectId&, v8::Local<v8::Value>*) const;
98 String16 objectGroupName(const RemoteObjectId&) const;
Dinjected-script.cc474 Response InjectedScript::findObject(const RemoteObjectId& objectId, in findObject()
483 String16 InjectedScript::objectGroupName(const RemoteObjectId& objectId) const { in objectGroupName()
527 std::unique_ptr<RemoteObjectId> remoteObjectId; in resolveCallArgument()
529 RemoteObjectId::parse(callArgument->getObjectId(""), &remoteObjectId); in resolveCallArgument()
756 std::unique_ptr<RemoteObjectId> remoteId; in findInjectedScript()
757 Response response = RemoteObjectId::parse(m_remoteObjectId, &remoteId); in findInjectedScript()
Djs_protocol.pdl354 Runtime.RemoteObjectId objectId
583 Runtime.RemoteObjectId objectId
840 type RemoteObjectId extends string
886 optional RemoteObjectId objectId
895 RemoteObjectId formatterObjectId
896 RemoteObjectId bindRemoteObjectFunctionId
897 optional RemoteObjectId configObjectId
1021 optional RemoteObjectId objectId
1109 RemoteObjectId promiseObjectId
1128 optional RemoteObjectId objectId
[all …]
Dv8-inspector-session-impl.cc258 std::unique_ptr<RemoteObjectId> remoteId; in unwrapObject()
259 Response response = RemoteObjectId::parse(objectId, &remoteId); in unwrapObject()