Lines Matching refs:breakpoint
33 LOG_DEBUGGER(ERROR) << "SetBreakpoint: Invalid breakpoint location";
57 LOG_DEBUGGER(ERROR) << "SetSmartBreakpoint: Invalid breakpoint location";
152 auto breakpoint = FindBreakpoint(method, bcOffset);
153 if (!breakpoint.has_value() || !IsBreakpointCondSatisfied(breakpoint)) {
157 breakpoint.value().GetSourceFile()};
174 // if a breakpoint is set on the same line as debugger stmt,
291 bool JSDebugger::IsBreakpointCondSatisfied(std::optional<JSBreakpoint> breakpoint) const
293 if (!breakpoint.has_value()) {
297 auto condFuncRef = breakpoint.value().GetConditionFunction();