Searched refs:ptJson (Results 1 - 4 of 4) sorted by relevance
/arkcompiler/toolchain/tooling/test/ |
H A D | pt_params_test.cpp | 54 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); in HWTEST_F_L0() local 56 ptJson->Add("maxScriptsCacheSize", attribute.c_str()); in HWTEST_F_L0() 57 std::unique_ptr<EnableParams> result = EnableParams::Create(*ptJson); in HWTEST_F_L0() 63 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); in HWTEST_F_L0() local 65 ptJson->Add("objectGroup", 0); in HWTEST_F_L0() 66 ptJson->Add("includeCommandLineAPI", attribute.c_str()); in HWTEST_F_L0() 67 ptJson->Add("silent", attribute.c_str()); in HWTEST_F_L0() 68 ptJson->Add("returnByValue", attribute.c_str()); in HWTEST_F_L0() 69 ptJson->Add("generatePreview", attribute.c_str()); in HWTEST_F_L0() 70 ptJson in HWTEST_F_L0() 77 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 94 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 106 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 119 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 138 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 157 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 169 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 181 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 190 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 199 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 208 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 222 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local [all...] |
H A D | pt_types_test.cpp | 316 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); in HWTEST_F_L0() local 317 ptJson->Add("recordMode", 0); in HWTEST_F_L0() 318 ptJson->Add("enableSampling", attribute.c_str()); in HWTEST_F_L0() 319 ptJson->Add("enableSystrace", attribute.c_str()); in HWTEST_F_L0() 320 ptJson->Add("enableArgumentFilter", attribute.c_str()); in HWTEST_F_L0() 321 ptJson->Add("includedCategories", attribute.c_str()); in HWTEST_F_L0() 322 ptJson->Add("excludedCategories", attribute.c_str()); in HWTEST_F_L0() 323 ptJson->Add("syntheticDelays", attribute.c_str()); in HWTEST_F_L0() 324 ptJson->Add("memoryDumpConfig", attribute.c_str()); in HWTEST_F_L0() 325 std::unique_ptr<TraceConfig> traceConfig = TraceConfig::Create(*ptJson); in HWTEST_F_L0() 367 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 379 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 391 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 403 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 438 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 514 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 539 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 558 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 577 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 596 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 614 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 632 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 647 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 662 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 695 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 778 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 790 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 808 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 831 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local 840 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); HWTEST_F_L0() local [all...] |
H A D | pt_json_test.cpp | 184 PtJson ptJson; in HWTEST_F_L0() local 185 std::string result = ptJson.Stringify(); in HWTEST_F_L0() 191 PtJson ptJson; in HWTEST_F_L0() local 192 std::string result = ptJson.GetKey(); in HWTEST_F_L0() 206 Result result1 = ptJson.GetAny(test, &ptr); in HWTEST_F_L0() 240 PtJson ptJson; in HWTEST_F_L0() local 241 bool result = ptJson.Push(ptr); in HWTEST_F_L0() 244 result = ptJson.Push(cPtr); in HWTEST_F_L0() 247 result = ptJson.Push(value); in HWTEST_F_L0() 250 result = ptJson in HWTEST_F_L0() 268 PtJson ptJson; HWTEST_F_L0() local [all...] |
/arkcompiler/toolchain/tooling/base/ |
H A D | pt_params.cpp | 538 PtJson ptJson(params.GetJson());
in Create() 539 AddRequireParams(ptJson);
in Create() 540 if (!(sbpObject = SetBreakpointByUrlParams::Create(ptJson))) {
in Create()
|
Completed in 5 milliseconds