Home | History | Annotate | Download | only in src

Lines Matching refs:break_id

246 function IsBreakPointTriggered(break_id, break_point) {
247 return break_point.isTriggered(MakeExecutionState(break_id));
933 function MakeExecutionState(break_id) {
934 return new ExecutionState(break_id);
937 function ExecutionState(break_id) {
938 this.break_id = break_id;
947 return %PrepareStep(this.break_id, action, count);
952 return MakeMirror(%DebugEvaluateGlobal(this.break_id, source,
958 return %GetFrameCount(this.break_id);
962 return %GetThreadCount(this.break_id);
971 return new FrameMirror(this.break_id, opt_index);
2301 var details = %GetThreadDetails(this.exec_state_.break_id, i);