Searched refs:break_points_hit (Results 1 – 5 of 5) sorted by relevance
/third_party/node/deps/v8/src/debug/ |
D | debug.cc | 130 Handle<FixedArray> break_points_hit = isolate_->factory()->NewFixedArray( in CheckBreakPointsForLocations() local 144 break_points_hit->set(break_points_hit_count++, in CheckBreakPointsForLocations() 152 break_points_hit->Shrink(isolate_, break_points_hit_count); in CheckBreakPointsForLocations() 153 return break_points_hit; in CheckBreakPointsForLocations() 516 MaybeHandle<FixedArray> break_points_hit = in Break() local 518 if (!break_points_hit.is_null() || break_on_next_function_call()) { in Break() 523 OnDebugBreak(!break_points_hit.is_null() in Break() 524 ? break_points_hit.ToHandleChecked() in Break() 1031 Handle<FixedArray> break_points_hit = isolate_->factory()->NewFixedArray(1); in GetHitBreakPoints() local 1032 break_points_hit->set(0, *break_points); in GetHitBreakPoints() [all …]
|
D | debug.h | 219 void OnDebugBreak(Handle<FixedArray> break_points_hit, StepAction stepAction,
|
/third_party/node/deps/v8/src/wasm/ |
D | wasm-debug.cc | 1266 Handle<FixedArray> break_points_hit = isolate->factory()->NewFixedArray(1); in CheckBreakPoints() local 1267 break_points_hit->set(0, *break_points); in CheckBreakPoints() 1268 return break_points_hit; in CheckBreakPoints() 1272 Handle<FixedArray> break_points_hit = in CheckBreakPoints() local 1278 break_points_hit->set(break_points_hit_count++, *break_point); in CheckBreakPoints() 1282 break_points_hit->Shrink(isolate, break_points_hit_count); in CheckBreakPoints() 1283 return break_points_hit; in CheckBreakPoints()
|
/third_party/node/deps/v8/src/inspector/ |
D | v8-debugger.cc | 539 const std::vector<v8::debug::BreakpointId>& break_points_hit, in BreakProgramRequested() argument 541 handleProgramBreak(pausedContext, v8::Local<v8::Value>(), break_points_hit, in BreakProgramRequested() 549 std::vector<v8::debug::BreakpointId> break_points_hit; in ExceptionThrown() local 551 pausedContext, exception, break_points_hit, in ExceptionThrown()
|
D | v8-debugger.h | 191 const std::vector<v8::debug::BreakpointId>& break_points_hit,
|