Home | History | Annotate | Download | only in inspector

Lines Matching refs:protocol

13 #include "src/inspector/protocol/Protocol.h"
31 using protocol::Array;
32 using protocol::Maybe;
33 using protocol::Debugger::BreakpointId;
34 using protocol::Debugger::CallFrame;
35 using protocol::Runtime::ExceptionDetails;
36 using protocol::Runtime::ScriptId;
37 using protocol::Runtime::StackTrace;
38 using protocol::Runtime::RemoteObject;
67 protocol::Debugger::Location* location = stackTrace->get(i)->getLocation();
113 std::unique_ptr<protocol::Debugger::Location> buildProtocolLocation(
115 return protocol::Debugger::Location::create()
125 V8InspectorSessionImpl* session, protocol::FrontendChannel* frontendChannel,
126 protocol::DictionaryValue* state)
172 protocol::DictionaryValue::create());
239 static std::unique_ptr<protocol::DictionaryValue>
243 std::unique_ptr<protocol::DictionaryValue> breakpointObject =
244 protocol::DictionaryValue::create();
266 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations) {
267 *locations = Array<protocol::Debugger::Location>::create();
284 protocol::DictionaryValue* breakpointsCookie =
287 std::unique_ptr<protocol::DictionaryValue> newValue =
288 protocol::DictionaryValue::create();
305 std::unique_ptr<protocol::Debugger::Location> location =
315 std::unique_ptr<protocol::Debugger::Location> location,
317 std::unique_ptr<protocol::Debugger::Location>* actualLocation) {
337 protocol::DictionaryValue* breakpointsCookie =
363 std::unique_ptr<protocol::Debugger::Location> start,
364 Maybe<protocol::Debugger::Location> end,
365 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations) {
392 *locations = protocol::Array<protocol::Debugger::Location>::create();
395 ->addItem(protocol::Debugger::Location::create()
405 std::unique_ptr<protocol::Debugger::Location> location) {
456 std::unique_ptr<protocol::Debugger::Location>
471 // Translate from protocol location to v8 location for the debugger.
483 // Translate back from v8 location to protocol location for the return value.
500 std::unique_ptr<Array<protocol::Debugger::SearchMatch>>* results) {
506 std::vector<std::unique_ptr<protocol::Debugger::SearchMatch>> matches =
510 *results = protocol::Array<protocol::Debugger::SearchMatch>::create();
518 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* newCallFrames,
520 Maybe<protocol::Runtime::ExceptionDetails>* optOutCompileError) {
592 std::unique_ptr<protocol::DictionaryValue> breakAuxData) {
608 std::unique_ptr<protocol::DictionaryValue> data) {
707 Maybe<protocol::Runtime::ExceptionDetails>* exceptionDetails) {
736 std::unique_ptr<protocol::Runtime::CallArgument> newValueArgument,
767 std::unique_ptr<protocol::Array<String16>> patterns) {
808 std::unique_ptr<protocol::Array<protocol::Debugger::ScriptPosition>>
823 protocol::Debugger::ScriptPosition* position = inPositions->get(i);
972 std::unique_ptr<protocol::Value> protocolValue;
975 protocol::ErrorSupport errorSupport;
1004 std::unique_ptr<protocol::DictionaryValue> executionContextAuxData;
1008 executionContextAuxData = protocol::DictionaryValue::cast(
1009 protocol::StringUtil::parseJSON(inspected->auxData()));
1029 Maybe<protocol::DictionaryValue> executionContextAuxDataParam(
1050 protocol::DictionaryValue* breakpointsCookie =
1056 protocol::DictionaryValue* breakpointObject =
1057 protocol::DictionaryValue::cast(cookie.second);
1071 std::unique_ptr<protocol::Debugger::Location> location =
1091 std::make_pair(protocol::Debugger::Paused::ReasonEnum::OOM, nullptr));
1098 ? protocol::Debugger::Paused::ReasonEnum::PromiseRejection
1099 : protocol::Debugger::Paused::ReasonEnum::Exception;
1100 std::unique_ptr<protocol::Runtime::RemoteObject> obj;
1103 std::unique_ptr<protocol::DictionaryValue> breakAuxData;
1130 protocol::Debugger::Paused::ReasonEnum::DebugCommand, nullptr));
1140 String16 breakReason = protocol::Debugger::Paused::ReasonEnum::Other;
1141 std::unique_ptr<protocol::DictionaryValue> breakAuxData;
1146 breakReason = protocol::Debugger::Paused::ReasonEnum::Ambiguous;
1147 std::unique_ptr<protocol::ListValue> reasons =
1148 protocol::ListValue::create();
1150 std::unique_ptr<protocol::DictionaryValue> reason =
1151 protocol::DictionaryValue::create();
1157 breakAuxData = protocol::DictionaryValue::create();
1185 std::unique_ptr<protocol::DictionaryValue> data) {
1198 std::unique_ptr<protocol::DictionaryValue> data) {