Home
last modified time | relevance | path

Searched refs:break_point_objects (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/debug/
Ddebug.cc454 Handle<Object> break_point_objects = location.BreakPointObjects(); in Break() local
455 Handle<Object> break_points_hit = CheckBreakPoints(break_point_objects); in Break()
509 Handle<Object> Debug::CheckBreakPoints(Handle<Object> break_point_objects) { in CheckBreakPoints() argument
516 DCHECK(!break_point_objects->IsUndefined()); in CheckBreakPoints()
517 if (break_point_objects->IsFixedArray()) { in CheckBreakPoints()
518 Handle<FixedArray> array(FixedArray::cast(*break_point_objects)); in CheckBreakPoints()
528 if (CheckBreakPoint(break_point_objects)) { in CheckBreakPoints()
529 break_points_hit->set(break_points_hit_count++, *break_point_objects); in CheckBreakPoints()
/external/v8/src/
Dobjects.cc19141 BreakPointInfo::cast(break_point_info)->break_point_objects(), in GetBreakPointObjects()
19202 if (break_point_info->break_point_objects()->IsUndefined()) return; in ClearBreakPoint()
19204 if (!break_point_info->break_point_objects()->IsFixedArray()) { in ClearBreakPoint()
19205 if (break_point_info->break_point_objects() == *break_point_object) { in ClearBreakPoint()
19212 DCHECK(break_point_info->break_point_objects()->IsFixedArray()); in ClearBreakPoint()
19215 FixedArray::cast(break_point_info->break_point_objects())); in ClearBreakPoint()
19238 if (break_point_info->break_point_objects()->IsUndefined()) { in SetBreakPoint()
19243 if (break_point_info->break_point_objects() == *break_point_object) return; in SetBreakPoint()
19245 if (!break_point_info->break_point_objects()->IsFixedArray()) { in SetBreakPoint()
19247 array->set(0, break_point_info->break_point_objects()); in SetBreakPoint()
[all …]
Dobjects-debug.cc1048 VerifyPointer(break_point_objects()); in BreakPointInfoVerify()
Dobjects-printer.cc1148 os << "\n - break_point_objects: " << Brief(break_point_objects()); in BreakPointInfoPrint()
Dobjects-inl.h5610 ACCESSORS(BreakPointInfo, break_point_objects, Object, kBreakPointObjectsIndex) in ACCESSORS()
Dobjects.h10608 DECL_ACCESSORS(break_point_objects, Object)