Lines Matching refs:Debugger

18 #include "src/inspector/protocol/Debugger.h"
36 using protocol::Debugger::BreakpointId;
37 using protocol::Debugger::CallFrame;
38 using protocol::Debugger::Scope;
44 protocol::Debugger::SetInstrumentationBreakpoint::InstrumentationEnum;
62 static const char kDebuggerNotEnabled[] = "Debugger agent is not enabled";
242 return protocol::Debugger::BreakLocation::TypeEnum::Call;
244 return protocol::Debugger::BreakLocation::TypeEnum::Return;
246 return protocol::Debugger::BreakLocation::TypeEnum::DebuggerStatement;
306 scope->setStartLocation(protocol::Debugger::Location::create()
313 scope->setEndLocation(protocol::Debugger::Location::create()
335 Response isValidPosition(protocol::Debugger::ScriptPosition* position) {
526 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations) {
529 *locations = std::make_unique<Array<protocol::Debugger::Location>>();
593 std::unique_ptr<protocol::Debugger::Location> location = setBreakpointImpl(
612 std::unique_ptr<protocol::Debugger::Location> location,
614 std::unique_ptr<protocol::Debugger::Location>* actualLocation) {
759 std::unique_ptr<protocol::Debugger::Location> start,
760 Maybe<protocol::Debugger::Location> end, Maybe<bool> restrictToFunction,
761 std::unique_ptr<protocol::Array<protocol::Debugger::BreakLocation>>*
802 std::make_unique<protocol::Array<protocol::Debugger::BreakLocation>>();
809 std::unique_ptr<protocol::Debugger::BreakLocation> breakLocation =
810 protocol::Debugger::BreakLocation::create()
824 std::unique_ptr<protocol::Debugger::Location> location,
842 protocol::Debugger::ContinueToLocation::TargetCallFramesEnum::Any));
940 std::unique_ptr<protocol::Debugger::Location>
979 return protocol::Debugger::Location::create()
1002 std::unique_ptr<Array<protocol::Debugger::SearchMatch>>* results) {
1008 *results = std::make_unique<protocol::Array<protocol::Debugger::SearchMatch>>(
1017 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* newCallFrames,
1164 pushBreakDetails(protocol::Debugger::Paused::ReasonEnum::Other, nullptr);
1180 Maybe<protocol::Array<protocol::Debugger::LocationRange>> inSkipList) {
1197 Maybe<protocol::Array<protocol::Debugger::LocationRange>> inSkipList) {
1406 std::unique_ptr<protocol::Array<protocol::Debugger::ScriptPosition>>
1420 for (const std::unique_ptr<protocol::Debugger::ScriptPosition>& position :
1479 std::unique_ptr<protocol::Debugger::Location> location =
1480 protocol::Debugger::Location::create()
1499 protocol::Debugger::Location::create()
1546 return protocol::Debugger::ScriptLanguageEnum::WebAssembly;
1548 return protocol::Debugger::ScriptLanguageEnum::JavaScript;
1557 return v8_inspector::protocol::Debugger::DebugSymbols::TypeEnum::None;
1559 return v8_inspector::protocol::Debugger::DebugSymbols::TypeEnum::
1562 return v8_inspector::protocol::Debugger::DebugSymbols::TypeEnum::
1565 return v8_inspector::protocol::Debugger::DebugSymbols::TypeEnum::
1570 static std::unique_ptr<protocol::Debugger::DebugSymbols> getDebugSymbols(
1575 std::unique_ptr<protocol::Debugger::DebugSymbols> debugSymbols =
1576 v8_inspector::protocol::Debugger::DebugSymbols::create()
1619 std::unique_ptr<protocol::Debugger::DebugSymbols> debugSymbols;
1714 std::unique_ptr<protocol::Debugger::Location> location =
1753 String16 breakReason = protocol::Debugger::Paused::ReasonEnum::Other;
1765 breakReason = protocol::Debugger::Paused::ReasonEnum::Instrumentation;
1797 std::make_pair(protocol::Debugger::Paused::ReasonEnum::OOM, nullptr));
1800 protocol::Debugger::Paused::ReasonEnum::Assert, nullptr));
1807 ? protocol::Debugger::Paused::ReasonEnum::PromiseRejection
1808 : protocol::Debugger::Paused::ReasonEnum::Exception;
1838 protocol::Debugger::Paused::ReasonEnum::DebugCommand, nullptr));
1851 std::make_pair(protocol::Debugger::Paused::ReasonEnum::Other, nullptr);
1857 std::make_pair(protocol::Debugger::Paused::ReasonEnum::Other, nullptr));
1865 String16 breakReason = protocol::Debugger::Paused::ReasonEnum::Other;
1871 breakReason = protocol::Debugger::Paused::ReasonEnum::Ambiguous;
1983 protocol::Array<protocol::Debugger::LocationRange>* skipList) {
1985 for (std::unique_ptr<protocol::Debugger::LocationRange>& range : *skipList) {
1986 protocol::Debugger::ScriptPosition* start = range->getStart();
1987 protocol::Debugger::ScriptPosition* end = range->getEnd();