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

/art/runtime/
H A Ddebugger.cc184 class Breakpoint { class in namespace:art
186 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc, bool need_full_deoptimization)
193 Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
222 static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs)
224 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
338 static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
3124 static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m)
3126 for (Breakpoint& breakpoint : gBreakpoints) {
3137 for (const Breakpoint
[all...]

Completed in 49 milliseconds