Lines Matching defs:breakpoint
1165 return DispatchResponse::Fail("Parse breakpoint id failed");
1184 LOG_DEBUGGER(INFO) << "remove breakpoint location: " << location.ToString();
1189 LOG_DEBUGGER(ERROR) << "failed to remove breakpoint location number: "
1194 LOG_DEBUGGER(INFO) << "remove breakpoint line number:" << metaData.line_;
1258 // it is not support column breakpoint now, so columnNumber is not useful
1279 LOG_DEBUGGER(INFO) << "set breakpoint location: " << location.ToString();
1291 LOG_DEBUGGER(ERROR) << "failed to set breakpoint location number: "
1313 return DispatchResponse::Fail("GetPossibleAndSetBreakpointByUrl: no pennding breakpoint exists");
1316 for (const auto &breakpoint : *breakpointList) {
1317 if (!ProcessSingleBreakpoint(*breakpoint, outLocations)) {
1321 .SetLineNumber(breakpoint->GetLineNumber())
1322 .SetColumnNumber(breakpoint->GetColumnNumber());
1329 bool DebuggerImpl::ProcessSingleBreakpoint(const BreakpointInfo &breakpoint,
1332 const std::string &url = breakpoint.GetUrl();
1333 int32_t lineNumber = breakpoint.GetLineNumber();
1334 // it is not support column breakpoint now, so columnNumber is not useful
1336 auto condition = breakpoint.HasCondition() ? breakpoint.GetCondition() : std::optional<std::string> {};
1367 LOG_DEBUGGER(ERROR) << "failed to set breakpoint location number: " << lineNumber << ":" << columnNumber;
1389 // if JS to C++ and C++ has breakpoint; it need to clear singleStepper_