/arkcompiler/toolchain/tooling/base/ |
D | pt_returns.cpp | 19 std::unique_ptr<PtJson> EnableReturns::ToJson() const in ToJson() 21 std::unique_ptr<PtJson> result = PtJson::CreateObject(); in ToJson() 28 std::unique_ptr<PtJson> SetBreakpointByUrlReturns::ToJson() const in ToJson() 30 std::unique_ptr<PtJson> result = PtJson::CreateObject(); in ToJson() 33 std::unique_ptr<PtJson> array = PtJson::CreateArray(); in ToJson() 37 std::unique_ptr<PtJson> location = locations_[i]->ToJson(); in ToJson() 45 std::unique_ptr<PtJson> GetPossibleAndSetBreakpointByUrlReturns::ToJson() const in ToJson() 47 std::unique_ptr<PtJson> result = PtJson::CreateObject(); in ToJson() 49 std::unique_ptr<PtJson> array = PtJson::CreateArray(); in ToJson() 53 std::unique_ptr<PtJson> location = locations_[i]->ToJson(); in ToJson() [all …]
|
D | pt_events.cpp | 19 std::unique_ptr<PtJson> BreakpointResolved::ToJson() const in ToJson() 21 std::unique_ptr<PtJson> result = PtJson::CreateObject(); in ToJson() 26 std::unique_ptr<PtJson> object = PtJson::CreateObject(); in ToJson() 33 std::unique_ptr<PtJson> Paused::ToJson() const in ToJson() 35 std::unique_ptr<PtJson> result = PtJson::CreateObject(); in ToJson() 37 std::unique_ptr<PtJson> array = PtJson::CreateArray(); in ToJson() 50 std::unique_ptr<PtJson> breakpoints = PtJson::CreateArray(); in ToJson() 58 std::unique_ptr<PtJson> object = PtJson::CreateObject(); in ToJson() 65 std::unique_ptr<PtJson> Resumed::ToJson() const in ToJson() 67 std::unique_ptr<PtJson> result = PtJson::CreateObject(); in ToJson() [all …]
|
D | pt_json.cpp | 21 std::unique_ptr<PtJson> PtJson::CreateObject() in CreateObject() 23 return std::make_unique<PtJson>(cJSON_CreateObject()); in CreateObject() 26 std::unique_ptr<PtJson> PtJson::CreateArray() in CreateArray() 28 return std::make_unique<PtJson>(cJSON_CreateArray()); in CreateArray() 31 void PtJson::ReleaseRoot() in ReleaseRoot() 39 std::unique_ptr<PtJson> PtJson::Parse(const std::string &data) in Parse() 42 return std::make_unique<PtJson>(value); in Parse() 45 std::string PtJson::Stringify() const in Stringify() 61 bool PtJson::Add(const char *key, bool value) const in Add() 79 bool PtJson::Add(const char *key, int32_t value) const in Add() [all …]
|
D | pt_json.h | 31 class PtJson { 33 PtJson() = default; 34 explicit PtJson(cJSON *object) : object_(object) {} in PtJson() function 35 ~PtJson() = default; 38 static std::unique_ptr<PtJson> CreateObject(); 39 static std::unique_ptr<PtJson> CreateArray(); 45 static std::unique_ptr<PtJson> Parse(const std::string &data); 57 bool Add(const char *key, const std::unique_ptr<PtJson> &value) const; 66 bool Push(const std::unique_ptr<PtJson> &value) const; 95 std::unique_ptr<PtJson> Get(int32_t index) const; [all …]
|
D | pt_types.cpp | 931 std::unique_ptr<RemoteObject> RemoteObject::Create(const PtJson ¶ms) in Create() 1001 std::unique_ptr<PtJson> RemoteObject::ToJson() const in ToJson() 1003 std::unique_ptr<PtJson> result = PtJson::CreateObject(); in ToJson() 1025 std::unique_ptr<ExceptionDetails> ExceptionDetails::Create(const PtJson ¶ms) in Create() 1079 std::unique_ptr<PtJson> exception; in Create() 1108 std::unique_ptr<PtJson> ExceptionDetails::ToJson() const in ToJson() 1110 std::unique_ptr<PtJson> result = PtJson::CreateObject(); in ToJson() 1134 std::unique_ptr<InternalPropertyDescriptor> InternalPropertyDescriptor::Create(const PtJson ¶ms) in Create() 1148 std::unique_ptr<PtJson> value; in Create() 1169 std::unique_ptr<PtJson> InternalPropertyDescriptor::ToJson() const in ToJson() [all …]
|
D | pt_returns.h | 26 std::unique_ptr<PtJson> ToJson() const override in ToJson() 28 return PtJson::CreateObject(); in ToJson() 41 std::unique_ptr<PtJson> ToJson() const override; 58 std::unique_ptr<PtJson> ToJson() const override; 76 std::unique_ptr<PtJson> ToJson() const override; 93 std::unique_ptr<PtJson> ToJson() const override; 111 std::unique_ptr<PtJson> ToJson() const override; 128 std::unique_ptr<PtJson> ToJson() const override; 145 std::unique_ptr<PtJson> ToJson() const override; 160 std::unique_ptr<PtJson> ToJson() const override; [all …]
|
D | pt_params.h | 26 std::unique_ptr<PtJson> ToJson() const override in ToJson() 41 static std::unique_ptr<EnableParams> Create(const PtJson ¶ms); 65 static std::unique_ptr<EvaluateOnCallFrameParams> Create(const PtJson ¶ms); 96 static std::unique_ptr<GetPossibleBreakpointsParams> Create(const PtJson ¶ms); 140 static std::unique_ptr<GetScriptSourceParams> Create(const PtJson ¶ms); 159 static std::unique_ptr<RemoveBreakpointParams> Create(const PtJson ¶ms); 178 static std::unique_ptr<ResumeParams> Create(const PtJson ¶ms); 202 static std::unique_ptr<SetAsyncCallStackDepthParams> Create(const PtJson ¶ms); 220 static std::unique_ptr<SetBlackboxPatternsParams> Create(const PtJson ¶ms); 239 static std::unique_ptr<SetBreakpointByUrlParams> Create(const PtJson ¶ms); [all …]
|
D | pt_params.cpp | 19 std::unique_ptr<EnableParams> EnableParams::Create(const PtJson ¶ms) in Create() 41 std::unique_ptr<EvaluateOnCallFrameParams> EvaluateOnCallFrameParams::Create(const PtJson ¶ms) in Create() 111 std::unique_ptr<GetPossibleBreakpointsParams> GetPossibleBreakpointsParams::Create(const PtJson &pa… in Create() 117 std::unique_ptr<PtJson> start; in Create() 129 std::unique_ptr<PtJson> end; in Create() 157 std::unique_ptr<GetScriptSourceParams> GetScriptSourceParams::Create(const PtJson ¶ms) in Create() 179 std::unique_ptr<RemoveBreakpointParams> RemoveBreakpointParams::Create(const PtJson ¶ms) in Create() 201 std::unique_ptr<ResumeParams> ResumeParams::Create(const PtJson ¶ms) in Create() 223 std::unique_ptr<SetAsyncCallStackDepthParams> SetAsyncCallStackDepthParams::Create(const PtJson &pa… in Create() 245 std::unique_ptr<SetBlackboxPatternsParams> SetBlackboxPatternsParams::Create(const PtJson ¶ms) in Create() [all …]
|
D | pt_types.h | 35 virtual std::unique_ptr<PtJson> ToJson() const = 0; 93 static std::unique_ptr<BreakpointInfo> Create(const PtJson ¶ms); 94 std::unique_ptr<PtJson> ToJson() const override; 176 static std::unique_ptr<BreakpointReturnInfo> Create(const PtJson ¶ms); 177 std::unique_ptr<PtJson> ToJson() const override; 253 static std::unique_ptr<RemoteObject> Create(const PtJson ¶ms); 254 std::unique_ptr<PtJson> ToJson() const override; 592 static std::unique_ptr<ExceptionDetails> Create(const PtJson ¶ms); 593 std::unique_ptr<PtJson> ToJson() const override; 727 static std::unique_ptr<InternalPropertyDescriptor> Create(const PtJson ¶ms); [all …]
|
D | pt_events.h | 44 std::unique_ptr<PtJson> ToJson() const override; 85 std::unique_ptr<PtJson> ToJson() const override; 209 std::unique_ptr<PtJson> ToJson() const override; 225 std::unique_ptr<PtJson> ToJson() const override; 289 std::unique_ptr<PtJson> ToJson() const override; 541 std::unique_ptr<PtJson> ToJson() const override; 810 std::unique_ptr<PtJson> ToJson() const override; 833 std::unique_ptr<PtJson> ToJson() const override; 903 std::unique_ptr<PtJson> ToJson() const override; 961 std::unique_ptr<PtJson> ToJson() const override; [all …]
|
/arkcompiler/toolchain/tooling/test/ |
D | pt_params_test.cpp | 54 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); in HWTEST_F_L0() 63 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); in HWTEST_F_L0() 77 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); in HWTEST_F_L0() 78 std::unique_ptr<PtJson> start = PtJson::CreateObject(); in HWTEST_F_L0() 79 std::unique_ptr<PtJson> ptJson1 = PtJson::CreateObject(); in HWTEST_F_L0() 80 std::unique_ptr<PtJson> end = PtJson::CreateObject(); in HWTEST_F_L0() 94 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); in HWTEST_F_L0() 95 std::unique_ptr<PtJson> ptJson1 = PtJson::CreateObject(); in HWTEST_F_L0() 106 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); in HWTEST_F_L0() 107 std::unique_ptr<PtJson> array = PtJson::CreateArray(); in HWTEST_F_L0() [all …]
|
D | pt_types_test.cpp | 309 std::unique_ptr<PtJson> result = treceConfig.ToJson(); in HWTEST_F_L0() 314 std::unique_ptr<PtJson> includedCategoriesArray = PtJson::CreateArray(); in HWTEST_F_L0() 315 std::unique_ptr<PtJson> excludedCategoriesArray = PtJson::CreateArray(); in HWTEST_F_L0() 316 std::unique_ptr<PtJson> syntheticDelaysArray = PtJson::CreateArray(); in HWTEST_F_L0() 317 std::unique_ptr<PtJson> object = PtJson::CreateObject(); in HWTEST_F_L0() 319 std::unique_ptr<PtJson> ptJson = PtJson::CreateObject(); in HWTEST_F_L0() 331 std::unique_ptr<PtJson> ptJson1 = PtJson::CreateObject(); in HWTEST_F_L0() 339 std::unique_ptr<PtJson> ptJson2 = PtJson::CreateObject(); in HWTEST_F_L0() 342 std::unique_ptr<PtJson> ptJson3 = PtJson::CreateObject(); in HWTEST_F_L0() 343 std::unique_ptr<PtJson> memoryDumpConfig = PtJson::CreateArray(); in HWTEST_F_L0() [all …]
|
D | pt_json_test.cpp | 46 std::unique_ptr<PtJson> json = PtJson::Parse(str.c_str()); in HWTEST_F_L0() 56 std::unique_ptr<PtJson> json = PtJson::Parse(str.c_str()); in HWTEST_F_L0() 66 std::unique_ptr<PtJson> json = PtJson::Parse(str.c_str()); in HWTEST_F_L0() 76 std::unique_ptr<PtJson> json = PtJson::Parse(str.c_str()); in HWTEST_F_L0() 86 std::unique_ptr<PtJson> json = PtJson::Parse(str.c_str()); in HWTEST_F_L0() 96 std::unique_ptr<PtJson> json = PtJson::Parse(str.c_str()); in HWTEST_F_L0() 106 std::unique_ptr<PtJson> json = PtJson::Parse(str.c_str()); in HWTEST_F_L0() 119 std::unique_ptr<PtJson> json = PtJson::Parse(str.c_str()); in HWTEST_F_L0() 133 auto child1 = PtJson::CreateObject(); in HWTEST_F_L0() 137 auto child2 = PtJson::CreateObject(); in HWTEST_F_L0() [all …]
|
D | debugger_events_test.cpp | 71 std::unique_ptr<PtJson> json; in HWTEST_F_L0() 77 std::unique_ptr<PtJson> locationJson; in HWTEST_F_L0() 94 std::unique_ptr<PtJson> json = paused.ToJson(); in HWTEST_F_L0() 95 std::unique_ptr<PtJson> params; in HWTEST_F_L0() 101 std::unique_ptr<PtJson> callFrames; in HWTEST_F_L0() 110 std::unique_ptr<PtJson> json1 = paused1.ToJson(); in HWTEST_F_L0() 118 std::unique_ptr<PtJson> json = nativeCalling.ToJson(); in HWTEST_F_L0() 123 std::unique_ptr<PtJson> params; in HWTEST_F_L0() 133 std::unique_ptr<PtJson> json = resumed.ToJson(); in HWTEST_F_L0() 138 std::unique_ptr<PtJson> params; in HWTEST_F_L0() [all …]
|
D | pt_returns_test.cpp | 61 std::unique_ptr<PtJson> tmpJson; in HWTEST_F_L0() 71 std::unique_ptr<PtJson> tmpJson; in HWTEST_F_L0() 86 std::unique_ptr<PtJson> json; in HWTEST_F_L0() 113 std::unique_ptr<PtJson> callFramesJson; in HWTEST_F_L0() 120 std::unique_ptr<PtJson> exceptionDetailJson; in HWTEST_F_L0() 126 std::unique_ptr<PtJson> callJson; in HWTEST_F_L0() 130 std::unique_ptr<PtJson> exceptionJson; in HWTEST_F_L0() 163 std::unique_ptr<PtJson> resultJson; in HWTEST_F_L0() 168 std::unique_ptr<PtJson> internalJson; in HWTEST_F_L0() 173 std::unique_ptr<PtJson> privateJson; in HWTEST_F_L0() [all …]
|
D | debugger_returns_test.cpp | 87 std::unique_ptr<PtJson> locationsJson; in HWTEST_F_L0() 102 std::unique_ptr<PtJson> json; in HWTEST_F_L0() 108 std::unique_ptr<PtJson> tmpJson; in HWTEST_F_L0() 124 std::unique_ptr<PtJson> locationsJson; in HWTEST_F_L0() 162 std::unique_ptr<PtJson> json; in HWTEST_F_L0() 179 std::unique_ptr<PtJson> tmpJson; in HWTEST_F_L0() 212 std::unique_ptr<PtJson> json; in HWTEST_F_L0() 228 std::unique_ptr<PtJson> json; in HWTEST_F_L0() 242 std::unique_ptr<PtJson> json; in HWTEST_F_L0() 248 std::unique_ptr<PtJson> tmpJson; in HWTEST_F_L0() [all …]
|
/arkcompiler/toolchain/tooling/ |
D | protocol_handler.cpp | 88 std::unique_ptr<PtJson> reply = PtJson::CreateObject(); in SendResponse() 90 std::unique_ptr<PtJson> resultObj; in SendResponse() 104 std::unique_ptr<PtJson> reply = events.ToJson(); in SendNotification() 109 void ProtocolHandler::SendReply(const PtJson &reply) in SendReply() 120 std::unique_ptr<PtJson> ProtocolHandler::CreateErrorReply(const DispatchResponse &response) in CreateErrorReply() 122 std::unique_ptr<PtJson> result = PtJson::CreateObject(); in CreateErrorReply()
|
D | dispatcher.h | 62 const PtJson &GetParams() const in GetParams() 79 std::unique_ptr<PtJson> params_ = std::make_unique<PtJson>();
|
D | protocol_handler.h | 52 std::unique_ptr<PtJson> CreateErrorReply(const DispatchResponse &response); 53 void SendReply(const PtJson &reply);
|
D | dispatcher.cpp | 32 std::unique_ptr<PtJson> json = PtJson::Parse(message); in DispatchRequest() 75 std::unique_ptr<PtJson> params; in DispatchRequest()
|
/arkcompiler/toolchain/test/fuzztest/pttypesprivatepropertydespcreate_fuzzer/ |
D | pttypesprivatepropertydespcreate_fuzzer.cpp | 33 std::unique_ptr<PtJson> pt = PtJson::Parse(std::string((const char*)data, size)); in PtTypesPrivatePropertyDespCreateFuzzTest()
|
/arkcompiler/toolchain/test/fuzztest/pttypesinternalpropertydespcreate_fuzzer/ |
D | pttypesinternalpropertydespcreate_fuzzer.cpp | 33 std::unique_ptr<PtJson> pt = PtJson::Parse(std::string((const char*)data, size)); in PtTypesInternalPropertyDespCreateFuzzTest()
|
/arkcompiler/toolchain/test/fuzztest/pttypesexceptiondetailscreate_fuzzer/ |
D | pttypesexceptiondetailscreate_fuzzer.cpp | 35 PtJson pjson(cjson); in PtTypesExceptionDetailsCreateFuzzTest()
|
/arkcompiler/toolchain/test/fuzztest/base/ptevents/paused/baseptspausedsetdata_fuzzer/ |
D | baseptspausedsetdata_fuzzer.cpp | 37 std::unique_ptr<PtJson> json = paused.ToJson(); in BasePtsPausedSetDataFuzzTest()
|
/arkcompiler/toolchain/test/fuzztest/base/ptevents/breakpointresolved/baseptsbreakpointsetlocation_fuzzer/ |
D | baseptsbreakpointsetlocation_fuzzer.cpp | 50 std::unique_ptr<PtJson> json = breakpointResolved.ToJson(); in BasePtsBreakpointSetLocationFuzzTest()
|