Home
last modified time | relevance | path

Searched refs:RemoteObjectId (Results 1 – 5 of 5) 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.h46 class RemoteObjectId; variable
85 Response findObject(const RemoteObjectId&, v8::Local<v8::Value>*) const;
86 String16 objectGroupName(const RemoteObjectId&) const;
Dinjected-script.cc267 Response InjectedScript::findObject(const RemoteObjectId& objectId, in findObject()
275 String16 InjectedScript::objectGroupName(const RemoteObjectId& objectId) const { in objectGroupName()
308 std::unique_ptr<RemoteObjectId> remoteObjectId; in resolveCallArgument()
310 RemoteObjectId::parse(callArgument->getObjectId(""), &remoteObjectId); in resolveCallArgument()
512 std::unique_ptr<RemoteObjectId> remoteId; in findInjectedScript()
513 Response response = RemoteObjectId::parse(m_remoteObjectId, &remoteId); in findInjectedScript()
Dv8-inspector-session-impl.cc277 std::unique_ptr<RemoteObjectId> remoteId; in unwrapObject()
278 Response response = RemoteObjectId::parse(objectId, &remoteId); in unwrapObject()