Home
last modified time | relevance | path

Searched refs:protocolValue (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/inspector/
Dinjected-script.cc148 std::unique_ptr<protocol::Value> protocolValue; in getProperties() local
149 Response response = toProtocolValue(context, resultValue, &protocolValue); in getProperties()
153 Array<PropertyDescriptor>::fromValue(protocolValue.get(), &errors); in getProperties()
182 std::unique_ptr<protocol::Value> protocolValue; in wrapObject() local
183 response = toProtocolValue(context, wrappedObject, &protocolValue); in wrapObject()
187 protocol::Runtime::RemoteObject::fromValue(protocolValue.get(), &errors); in wrapObject()
259 std::unique_ptr<protocol::Value> protocolValue; in wrapTable() local
260 Response response = toProtocolValue(context, r, &protocolValue); in wrapTable()
263 return protocol::Runtime::RemoteObject::fromValue(protocolValue.get(), in wrapTable()
Dv8-debugger-agent-impl.cc972 std::unique_ptr<protocol::Value> protocolValue; in currentCallFrames() local
973 Response response = toProtocolValue(debuggerContext, objects, &protocolValue); in currentCallFrames()
976 *result = Array<CallFrame>::fromValue(protocolValue.get(), &errorSupport); in currentCallFrames()