Home | History | Annotate | Download | only in runtime

Lines Matching full:breakpoint

86 struct Breakpoint {
89 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc) : method(method), dex_pc(dex_pc) {}
92 static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
94 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.method).c_str(), rhs.dex_pc);
194 static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
203 VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i];
2376 gBreakpoints.push_back(Breakpoint(m, location->dex_pc));
2377 VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " << gBreakpoints[gBreakpoints.size() - 1];
2385 VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i];