Home
last modified time | relevance | path

Searched refs:breakpointId (Results 1 - 12 of 12) sorted by relevance

/arkcompiler/toolchain/tooling/client/manager/
H A Dbreakpoint_manager.cpp44 std::string breakpointId; in Createbreaklocation() local
45 ret = result->GetString("breakpointId", &breakpointId); in Createbreaklocation()
48 breaklocation.breakpointId = breakpointId; in Createbreaklocation()
50 breaksplitstring = Utils::SplitString(breakpointId, ":"); in Createbreaklocation()
56 LOGE("arkdb: find breakpointId error"); in Createbreaklocation()
H A Dbreakpoint_manager.h32 std::string breakpointId; member
/arkcompiler/toolchain/tooling/test/testcases/
H A Djs_special_location_breakpoint_test.h80 std::string breakpointId = ""; in RecvBreakpointInfo() local
81 ret = result->GetString("breakpointId", &breakpointId); in RecvBreakpointInfo()
82 if (ret != Result::SUCCESS || breakpointId.find(sourceFile_) == std::string::npos || in RecvBreakpointInfo()
83 breakpointId.find(std::to_string(line)) == std::string::npos) { in RecvBreakpointInfo()
/arkcompiler/toolchain/tooling/test/
H A Ddebugger_returns_test.cpp85 ASSERT_EQ(setBreakpointByUrlReturns->ToJson()->GetString("breakpointId", &id), Result::SUCCESS); in HWTEST_F_L0()
176 std::string breakpointId; in HWTEST_F_L0() local
177 ASSERT_EQ(setBreakpointReturns->ToJson()->GetString("breakpointId", &breakpointId), Result::SUCCESS); in HWTEST_F_L0()
178 EXPECT_EQ(breakpointId, "breakpointId_1"); in HWTEST_F_L0()
190 std::string breakpointId; in HWTEST_F_L0() local
191 ASSERT_EQ(setInstrumentationBreakpointReturns->ToJson()->GetString("breakpointId", &breakpointId), in HWTEST_F_L0()
193 EXPECT_EQ(breakpointId, "111"); in HWTEST_F_L0()
H A Ddebugger_events_test.cpp73 std::string breakpointId; in HWTEST_F_L0() local
74 ASSERT_EQ(json->GetString("breakpointId", &breakpointId), Result::SUCCESS); in HWTEST_F_L0()
75 EXPECT_EQ(breakpointId, "00"); in HWTEST_F_L0()
H A Ddebugger_params_test.cpp741 msg = std::string() + R"({"id":0,"method":"Debugger.Test","params":{"breakpointId":10}})"; in HWTEST_F_L0()
745 msg = std::string() + R"({"id":0,"method":"Debugger.Test","params":{"breakpointId":"10"}})"; in HWTEST_F_L0()
H A Ddebugger_impl_test.cpp513 "breakpointId":"id:0:0" in HWTEST_F_L0()
544 "breakpointId":"id:0:0:url" in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/client/domain/
H A Ddebugger_client.cpp107 std::string breakpointId = breakPointInfoList_.back().url; in DeleteCommand() local
108 params->Add("breakpointId", breakpointId.c_str()); in DeleteCommand()
425 std::string breakpointId; in handleResponse() local
426 ret = result->GetString("breakpointId", &breakpointId); in handleResponse()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
H A Dinspector_server.cpp300 if (auto breakpointId = ParseNumericId<BreakpointId>(params, "breakpointId")) { in OnCallDebuggerRemoveBreakpoint()
301 handler(sessionManager_.GetThreadBySessionId(sessionId), *breakpointId); in OnCallDebuggerRemoveBreakpoint()
303 LOG(INFO, DEBUGGER) << breakpointId.Error(); in OnCallDebuggerRemoveBreakpoint()
362 result.AddProperty("breakpointId", std::to_string(*id)); in OnCallDebuggerSetBreakpoint()
404 result.AddProperty("breakpointId", std::to_string(*id)); in OnCallDebuggerSetBreakpointByUrl()
/arkcompiler/toolchain/tooling/base/
H A Dpt_params.cpp225 std::string breakpointId; in Create() local
226 ret = params.GetString("breakpointId", &breakpointId); in Create()
228 paramsObject->breakpointId_ = std::move(breakpointId); in Create()
230 error += "Unknown or wrong type of 'breakpointId';"; in Create()
H A Dpt_events.h57 BreakpointResolved &SetBreakpointId(const BreakpointId &breakpointId) in SetBreakpointId() argument
59 breakpointId_ = breakpointId; in SetBreakpointId()
/arkcompiler/toolchain/tooling/client/utils/
H A Dcli_command.cpp388 debuggerCli.AddBreakPointInfo(breakpoint.Getbreaklist()[num - 1].breakpointId, 0); // 1: breakpoinId in DeleteCommand()

Completed in 15 milliseconds