Home
last modified time | relevance | path

Searched refs:breakpoints (Results 1 - 8 of 8) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/tests/
H A Dtest_breaks_props.py96 breakpoints = sorted(
97 meta.breakpoints,
100 script_file.log(log, highlight_lines=[b.line_number for b in breakpoints])
101 log.info("Parsed breakpoints %s", breakpoints)
105 for br in breakpoints:
124 for br in breakpoints:
158 breakpoints = sorted(
159 meta.breakpoints,
162 script_file.log(log, highlight_lines=[b.line_number for b in breakpoints])
[all...]
H A Dtest_steps.py183 log.info("Parsed breakpoints %s", meta.breakpoints)
184 script_file.log(log, highlight_lines=[b.line_number for b in meta.breakpoints])
188 for br in meta.breakpoints:
199 for br in meta.breakpoints:
H A Dtest_this.py115 unk_bp = next(filter(lambda b: b.label == "unknown", walker.meta.breakpoints))
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/tests/evaluate/
H A Dtest_ets_evaluate.py115 breakpoints = stop_point.hit_breakpoints()
116 assert len(breakpoints) == 1
117 result_type = breakpoints[0].label if breakpoints[0].label else "undefined"
122 breakpoints = stop_point.hit_breakpoints()
123 assert len(breakpoints) == 1
124 if breakpoints[0].label is not None:
125 assert walker.capture.stdout[-1] == arkts_str(breakpoints[0].label)
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/
H A Dsource_meta.py51 breakpoints: List[Breakpoint]
54 return breakpoints_to_locations(self.breakpoints, script_id)
57 return [bp for bp in self.breakpoints if bp.breakpoint_id == breakpoint_id]
69 return SourceMeta(breakpoints=brs)
72 def breakpoints_to_locations(breakpoints: List[Breakpoint], script_id: runtime.ScriptId):
78 for br in breakpoints
H A Ddebug.py67 script_file.log(LOG, highlight_lines=[bp.line_number for bp in meta.breakpoints])
118 for bp in meta.breakpoints:
152 script_file.log(LOG, highlight_lines=[bp.line_number for bp in meta.breakpoints])
/arkcompiler/toolchain/tooling/base/
H A Dpt_events.cpp50 std::unique_ptr<PtJson> breakpoints = PtJson::CreateArray(); in ToJson() local
53 breakpoints->Push(hitBreakpoints_.value()[i].c_str()); in ToJson()
55 result->Add("hitBreakpoints", breakpoints); in ToJson()
H A Dpt_params.cpp441 std::unique_ptr<PtJson> breakpoints; in Create() local
442 ret = params.GetArray("locations", &breakpoints); in Create()
444 int32_t length = breakpoints->GetSize(); in Create()
447 std::unique_ptr<BreakpointInfo> info = BreakpointInfo::Create(*breakpoints->Get(i)); in Create()
449 error += "'breakpoints' items BreakpointInfo is invaild;"; in Create()
459 error += "Wrong type of 'breakpoints';"; in Create()

Completed in 6 milliseconds