Lines Matching refs:Breakpoint
184 class Breakpoint { class
186 Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc, bool need_full_deoptimization) in Breakpoint() function in art::Breakpoint
193 Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) in SHARED_LOCKS_REQUIRED()
222 static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs) in operator <<()
338 static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_);
3124 static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m) in FindFirstBreakpointForMethod()
3126 for (Breakpoint& breakpoint : gBreakpoints) { in FindFirstBreakpointForMethod()
3137 for (const Breakpoint& breakpoint : gBreakpoints) { in SanityCheckExistingBreakpoints()
3159 const Breakpoint* existing_breakpoint; in WatchLocation()
3192 gBreakpoints.push_back(Breakpoint(m, location->dex_pc, need_full_deoptimization)); in WatchLocation()
3214 const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m); in UnwatchLocation()