Home
last modified time | relevance | path

Searched refs:remoteObjectResult (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/toolchain/tooling/agent/
Dheapprofiler_impl.cpp99 std::unique_ptr<RemoteObject> remoteObjectResult; in GetObjectByHeapObjectId() local
100 … DispatchResponse response = heapprofiler_->GetObjectByHeapObjectId(*params, &remoteObjectResult); in GetObjectByHeapObjectId()
101 if (remoteObjectResult == nullptr) { in GetObjectByHeapObjectId()
106 GetObjectByHeapObjectIdReturns result(std::move(remoteObjectResult)); in GetObjectByHeapObjectId()
285 [[maybe_unused]] std::unique_ptr<RemoteObject> *remoteObjectResult) in GetObjectByHeapObjectId() argument
Dheapprofiler_impl.h48 std::unique_ptr<RemoteObject> *remoteObjectResult);
/arkcompiler/toolchain/tooling/test/
Ddebugger_returns_test.cpp282 std::unique_ptr<RemoteObject> remoteObjectResult = std::make_unique<RemoteObject>(); in HWTEST_F_L0() local
283 remoteObjectResult->SetType("idle5"); in HWTEST_F_L0()
285 … std::make_unique<GetObjectByHeapObjectIdReturns>(std::move(remoteObjectResult)); in HWTEST_F_L0()
Dheapprofiler_impl_test.cpp105 std::unique_ptr<RemoteObject> remoteObjectResult; in HWTEST_F_L0() local
106 DispatchResponse response = heapProfiler->GetObjectByHeapObjectId(*params, &remoteObjectResult); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/base/
Dpt_returns.h303 explicit GetObjectByHeapObjectIdReturns(std::unique_ptr<RemoteObject> remoteObjectResult) in GetObjectByHeapObjectIdReturns() argument
304 : remoteObjectResult_(std::move(remoteObjectResult)) in GetObjectByHeapObjectIdReturns()