HomeSort by relevance Sort by last modified time
    Searched refs:RemoteObjectId (Results 1 - 5 of 5) sorted by null

  /external/v8/src/inspector/
remote-object-id.h 28 class RemoteObjectId final : public RemoteObjectIdBase {
30 static Response parse(const String16&, std::unique_ptr<RemoteObjectId>*);
31 ~RemoteObjectId() {}
35 RemoteObjectId();
remote-object-id.cc 29 RemoteObjectId::RemoteObjectId() : RemoteObjectIdBase(), m_id(0) {}
31 Response RemoteObjectId::parse(const String16& objectId,
32 std::unique_ptr<RemoteObjectId>* result) {
33 std::unique_ptr<RemoteObjectId> remoteObjectId(new RemoteObjectId());
35 remoteObjectId->parseInjectedScriptId(objectId);
38 bool success = parsedObjectId->getInteger("id", &remoteObjectId->m_id);
40 *result = std::move(remoteObjectId);
    [all...]
injected-script.h 46 class RemoteObjectId;
85 Response findObject(const RemoteObjectId&, v8::Local<v8::Value>*) const;
86 String16 objectGroupName(const RemoteObjectId&) const;
150 const String16& remoteObjectId);
injected-script.cc 267 Response InjectedScript::findObject(const RemoteObjectId& objectId,
275 String16 InjectedScript::objectGroupName(const RemoteObjectId& objectId) const {
308 std::unique_ptr<RemoteObjectId> remoteObjectId;
310 RemoteObjectId::parse(callArgument->getObjectId(""), &remoteObjectId);
312 if (remoteObjectId->contextId() != m_context->contextId())
316 return findObject(*remoteObjectId, result);
504 const String16& remoteObjectId)
506 m_remoteObjectId(remoteObjectId) {}
    [all...]
v8-inspector-session-impl.cc 277 std::unique_ptr<RemoteObjectId> remoteId;
278 Response response = RemoteObjectId::parse(objectId, &remoteId);

Completed in 106 milliseconds