Searched defs:gBreakpoints (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Ddebugger.cc338 static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
385 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
386 if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) {
387 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i]; local
745 CHECK_EQ(gBreakpoints.size(), 0U);
3126 for (Breakpoint& breakpoint : gBreakpoints) {
3137 for (const Breakpoint& breakpoint : gBreakpoints) {
3192 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, need_full_deoptimization));
3193 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints
3207 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i]; local
[all...]

Completed in 55 milliseconds