Lines Matching refs:bp
97 const auto &bp = *it;
98 if (bp.GetSourceFile() == url) {
209 for (const auto &bp : breakpoints_) {
210 if ((bp.GetBytecodeOffset() == bcOffset) &&
211 (bp.GetPtMethod()->GetJSPandaFile() == method->GetJSPandaFile()) &&
212 (bp.GetPtMethod()->GetMethodId() == method->GetMethodId())) {
213 return bp;
221 for (const auto &bp : smartBreakpoints_) {
222 if ((bp.GetBytecodeOffset() == bcOffset) &&
223 (bp.GetPtMethod()->GetJSPandaFile() == method->GetJSPandaFile()) &&
224 (bp.GetPtMethod()->GetMethodId() == method->GetMethodId())) {
225 return bp;
234 const auto &bp = *it;
235 if ((bp.GetBytecodeOffset() == bcOffset) &&
236 (bp.GetPtMethod()->GetJSPandaFile() == ptMethod->GetJSPandaFile()) &&
237 (bp.GetPtMethod()->GetMethodId() == ptMethod->GetMethodId())) {
249 const auto &bp = *it;
250 if ((bp.GetBytecodeOffset() == bcOffset) &&
251 (bp.GetPtMethod()->GetJSPandaFile() == ptMethod->GetJSPandaFile()) &&
252 (bp.GetPtMethod()->GetMethodId() == ptMethod->GetMethodId())) {
286 for (const auto &bp : breakpoints_) {
287 LOG_DEBUGGER(DEBUG) << bp.ToString();