/arkcompiler/toolchain/tooling/agent/ |
D | profiler_impl.cpp | 24 void ProfilerImpl::DispatcherImpl::Dispatch(const DispatchRequest &request) in Dispatch() 27 { "disable", &ProfilerImpl::DispatcherImpl::Disable }, in Dispatch() 28 { "enable", &ProfilerImpl::DispatcherImpl::Enable }, in Dispatch() 29 { "start", &ProfilerImpl::DispatcherImpl::Start }, in Dispatch() 30 { "stop", &ProfilerImpl::DispatcherImpl::Stop }, in Dispatch() 31 { "setSamplingInterval", &ProfilerImpl::DispatcherImpl::SetSamplingInterval }, in Dispatch() 32 { "getBestEffortCoverage", &ProfilerImpl::DispatcherImpl::GetBestEffortCoverage }, in Dispatch() 33 { "stopPreciseCoverage", &ProfilerImpl::DispatcherImpl::StopPreciseCoverage }, in Dispatch() 34 { "takePreciseCoverage", &ProfilerImpl::DispatcherImpl::TakePreciseCoverage }, in Dispatch() 35 { "startPreciseCoverage", &ProfilerImpl::DispatcherImpl::StartPreciseCoverage }, in Dispatch() [all …]
|
D | tracing_impl.cpp | 24 void TracingImpl::DispatcherImpl::Dispatch(const DispatchRequest &request) in Dispatch() 27 { "end", &TracingImpl::DispatcherImpl::End }, in Dispatch() 28 { "getCategories", &TracingImpl::DispatcherImpl::GetCategories }, in Dispatch() 29 { "recordClockSyncMarker", &TracingImpl::DispatcherImpl::RecordClockSyncMarker }, in Dispatch() 30 { "requestMemoryDump", &TracingImpl::DispatcherImpl::RequestMemoryDump }, in Dispatch() 31 { "start", &TracingImpl::DispatcherImpl::Start } in Dispatch() 44 void TracingImpl::DispatcherImpl::End(const DispatchRequest &request) in End() 50 void TracingImpl::DispatcherImpl::GetCategories(const DispatchRequest &request) in GetCategories() 57 void TracingImpl::DispatcherImpl::RecordClockSyncMarker(const DispatchRequest &request) in RecordClockSyncMarker() 64 void TracingImpl::DispatcherImpl::RequestMemoryDump(const DispatchRequest &request) in RequestMemoryDump() [all …]
|
D | heapprofiler_impl.cpp | 21 void HeapProfilerImpl::DispatcherImpl::Dispatch(const DispatchRequest &request) in Dispatch() 24 { "addInspectedHeapObject", &HeapProfilerImpl::DispatcherImpl::AddInspectedHeapObject }, in Dispatch() 25 { "collectGarbage", &HeapProfilerImpl::DispatcherImpl::CollectGarbage }, in Dispatch() 26 { "enable", &HeapProfilerImpl::DispatcherImpl::Enable }, in Dispatch() 27 { "disable", &HeapProfilerImpl::DispatcherImpl::Disable }, in Dispatch() 28 { "getHeapObjectId", &HeapProfilerImpl::DispatcherImpl::GetHeapObjectId }, in Dispatch() 29 { "getObjectByHeapObjectId", &HeapProfilerImpl::DispatcherImpl::GetObjectByHeapObjectId }, in Dispatch() 30 { "getSamplingProfile", &HeapProfilerImpl::DispatcherImpl::GetSamplingProfile }, in Dispatch() 31 { "startSampling", &HeapProfilerImpl::DispatcherImpl::StartSampling }, in Dispatch() 32 { "startTrackingHeapObjects", &HeapProfilerImpl::DispatcherImpl::StartTrackingHeapObjects }, in Dispatch() [all …]
|
D | tracing_impl.h | 39 class DispatcherImpl final : public DispatcherBase { 41 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<TracingImpl> tracing) in DispatcherImpl() function 43 ~DispatcherImpl() override = default; 52 NO_COPY_SEMANTIC(DispatcherImpl); 53 NO_MOVE_SEMANTIC(DispatcherImpl); 55 using AgentHandler = void (TracingImpl::DispatcherImpl::*)(const DispatchRequest &request);
|
D | profiler_impl.h | 45 class DispatcherImpl final : public DispatcherBase { 47 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<ProfilerImpl> profiler) in DispatcherImpl() function 49 ~DispatcherImpl() override = default; 66 NO_COPY_SEMANTIC(DispatcherImpl); 67 NO_MOVE_SEMANTIC(DispatcherImpl); 69 using AgentHandler = void (ProfilerImpl::DispatcherImpl::*)(const DispatchRequest &request);
|
D | heapprofiler_impl.h | 58 class DispatcherImpl final : public DispatcherBase { 60 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<HeapProfilerImpl> heapprofiler) in DispatcherImpl() function 62 ~DispatcherImpl() override = default; 79 NO_COPY_SEMANTIC(DispatcherImpl); 80 NO_MOVE_SEMANTIC(DispatcherImpl); 82 … using AgentHandler = void (HeapProfilerImpl::DispatcherImpl::*)(const DispatchRequest &request);
|
D | debugger_impl.cpp | 278 void DebuggerImpl::DispatcherImpl::Dispatch(const DispatchRequest &request) in Dispatch() 281 { "enable", &DebuggerImpl::DispatcherImpl::Enable }, in Dispatch() 282 { "disable", &DebuggerImpl::DispatcherImpl::Disable }, in Dispatch() 283 { "evaluateOnCallFrame", &DebuggerImpl::DispatcherImpl::EvaluateOnCallFrame }, in Dispatch() 284 { "getPossibleBreakpoints", &DebuggerImpl::DispatcherImpl::GetPossibleBreakpoints }, in Dispatch() 285 { "getScriptSource", &DebuggerImpl::DispatcherImpl::GetScriptSource }, in Dispatch() 286 { "pause", &DebuggerImpl::DispatcherImpl::Pause }, in Dispatch() 287 { "removeBreakpoint", &DebuggerImpl::DispatcherImpl::RemoveBreakpoint }, in Dispatch() 288 { "resume", &DebuggerImpl::DispatcherImpl::Resume }, in Dispatch() 289 { "setAsyncCallStackDepth", &DebuggerImpl::DispatcherImpl::SetAsyncCallStackDepth }, in Dispatch() [all …]
|
D | debugger_impl.h | 108 class DispatcherImpl final : public DispatcherBase { 110 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<DebuggerImpl> debugger) in DispatcherImpl() function 112 ~DispatcherImpl() override = default; 136 NO_COPY_SEMANTIC(DispatcherImpl); 137 NO_MOVE_SEMANTIC(DispatcherImpl); 139 using AgentHandler = void (DebuggerImpl::DispatcherImpl::*)(const DispatchRequest &request);
|
D | runtime_impl.h | 47 class DispatcherImpl final : public DispatcherBase { 49 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<RuntimeImpl> runtime) in DispatcherImpl() function 51 ~DispatcherImpl() override = default; 62 using AgentHandler = void (RuntimeImpl::DispatcherImpl::*)(const DispatchRequest &request); 65 NO_COPY_SEMANTIC(DispatcherImpl); 66 NO_MOVE_SEMANTIC(DispatcherImpl);
|
/arkcompiler/toolchain/tooling/test/ |
D | debugger_impl_test.cpp | 90 …auto dispatcherImpl = std::make_unique<DebuggerImpl::DispatcherImpl>(protocolChannel, std::move(de… in HWTEST_F_L0() 120 …auto dispatcherImpl = std::make_unique<DebuggerImpl::DispatcherImpl>(protocolChannel, std::move(de… in HWTEST_F_L0() 151 …auto dispatcherImpl = std::make_unique<DebuggerImpl::DispatcherImpl>(protocolChannel, std::move(de… in HWTEST_F_L0() 179 …auto dispatcherImpl = std::make_unique<DebuggerImpl::DispatcherImpl>(protocolChannel, std::move(de… in HWTEST_F_L0() 207 …auto dispatcherImpl = std::make_unique<DebuggerImpl::DispatcherImpl>(protocolChannel, std::move(de… in HWTEST_F_L0() 238 …auto dispatcherImpl = std::make_unique<DebuggerImpl::DispatcherImpl>(protocolChannel, std::move(de… in HWTEST_F_L0() 269 …auto dispatcherImpl = std::make_unique<DebuggerImpl::DispatcherImpl>(protocolChannel, std::move(de… in HWTEST_F_L0() 297 …auto dispatcherImpl = std::make_unique<DebuggerImpl::DispatcherImpl>(protocolChannel, std::move(de… in HWTEST_F_L0() 337 …auto dispatcherImpl = std::make_unique<DebuggerImpl::DispatcherImpl>(protocolChannel, std::move(de… in HWTEST_F_L0() 365 …auto dispatcherImpl = std::make_unique<DebuggerImpl::DispatcherImpl>(protocolChannel, std::move(de… in HWTEST_F_L0() [all …]
|
D | runtime_impl_test.cpp | 60 …auto dispatcherImpl = std::make_unique<RuntimeImpl::DispatcherImpl>(channel, std::move(runtimeImpl… in HWTEST_F_L0() 83 …auto dispatcherImpl = std::make_unique<RuntimeImpl::DispatcherImpl>(channel, std::move(runtimeImpl… in HWTEST_F_L0() 102 …auto dispatcherImpl = std::make_unique<RuntimeImpl::DispatcherImpl>(channel, std::move(runtimeImpl… in HWTEST_F_L0() 121 …auto dispatcherImpl = std::make_unique<RuntimeImpl::DispatcherImpl>(channel, std::move(runtimeImpl… in HWTEST_F_L0() 140 …auto dispatcherImpl = std::make_unique<RuntimeImpl::DispatcherImpl>(channel, std::move(runtimeImpl… in HWTEST_F_L0() 164 …auto dispatcherImpl = std::make_unique<RuntimeImpl::DispatcherImpl>(channel, std::move(runtimeImpl… in HWTEST_F_L0() 189 …auto dispatcherImpl = std::make_unique<RuntimeImpl::DispatcherImpl>(channel, std::move(runtimeImpl… in HWTEST_F_L0()
|
D | profiler_impl_test.cpp | 169 … auto dispatcherImpl = std::make_unique<ProfilerImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0() 191 … auto dispatcherImpl = std::make_unique<ProfilerImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0() 209 … auto dispatcherImpl = std::make_unique<ProfilerImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0() 227 … auto dispatcherImpl = std::make_unique<ProfilerImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0() 248 … auto dispatcherImpl = std::make_unique<ProfilerImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0() 266 … auto dispatcherImpl = std::make_unique<ProfilerImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0() 288 … auto dispatcherImpl = std::make_unique<ProfilerImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0() 306 … auto dispatcherImpl = std::make_unique<ProfilerImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0() 324 … auto dispatcherImpl = std::make_unique<ProfilerImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0() 342 … auto dispatcherImpl = std::make_unique<ProfilerImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0() [all …]
|
D | heapprofiler_impl_test.cpp | 157 …auto dispatcherImpl = std::make_unique<HeapProfilerImpl::DispatcherImpl>(channel, std::move(tracin… in HWTEST_F_L0() 179 …auto dispatcherImpl = std::make_unique<HeapProfilerImpl::DispatcherImpl>(channel, std::move(tracin… in HWTEST_F_L0() 201 …auto dispatcherImpl = std::make_unique<HeapProfilerImpl::DispatcherImpl>(channel, std::move(tracin… in HWTEST_F_L0() 219 …auto dispatcherImpl = std::make_unique<HeapProfilerImpl::DispatcherImpl>(channel, std::move(tracin… in HWTEST_F_L0() 237 …auto dispatcherImpl = std::make_unique<HeapProfilerImpl::DispatcherImpl>(channel, std::move(tracin… in HWTEST_F_L0() 255 …auto dispatcherImpl = std::make_unique<HeapProfilerImpl::DispatcherImpl>(channel, std::move(tracin… in HWTEST_F_L0() 277 …auto dispatcherImpl = std::make_unique<HeapProfilerImpl::DispatcherImpl>(channel, std::move(tracin… in HWTEST_F_L0() 301 …auto dispatcherImpl = std::make_unique<HeapProfilerImpl::DispatcherImpl>(channel, std::move(tracin… in HWTEST_F_L0() 319 …auto dispatcherImpl = std::make_unique<HeapProfilerImpl::DispatcherImpl>(channel, std::move(tracin… in HWTEST_F_L0() 342 …auto dispatcherImpl = std::make_unique<HeapProfilerImpl::DispatcherImpl>(channel, std::move(tracin… in HWTEST_F_L0() [all …]
|
D | tracing_impl_test.cpp | 105 … auto dispatcherImpl = std::make_unique<TracingImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0() 127 … auto dispatcherImpl = std::make_unique<TracingImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0() 145 … auto dispatcherImpl = std::make_unique<TracingImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0() 163 … auto dispatcherImpl = std::make_unique<TracingImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0() 181 … auto dispatcherImpl = std::make_unique<TracingImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0() 199 … auto dispatcherImpl = std::make_unique<TracingImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0()
|
/arkcompiler/toolchain/tooling/ |
D | dispatcher.cpp | 138 std::make_unique<ProfilerImpl::DispatcherImpl>(channel, std::move(profiler)); in Dispatcher() 143 std::make_unique<HeapProfilerImpl::DispatcherImpl>(channel, std::move(heapProfiler)); in Dispatcher() 147 std::make_unique<TracingImpl::DispatcherImpl>(channel, std::move(tracing)); in Dispatcher() 153 std::make_unique<RuntimeImpl::DispatcherImpl>(channel, std::move(runtime)); in Dispatcher() 155 std::make_unique<DebuggerImpl::DispatcherImpl>(channel, std::move(debugger)); in Dispatcher()
|
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilercollectgarbage_fuzzer/ |
D | heapprofilercollectgarbage_fuzzer.cpp | 48 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerCollectgarbageFuzzTest()
|
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilerstoptrackingheapobjects_fuzzer/ |
D | heapprofilerstoptrackingheapobjects_fuzzer.cpp | 48 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerStopTrackingHeapObjectsFuzzTest()
|
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilerstartsampling_fuzzer/ |
D | heapprofilerstartsampling_fuzzer.cpp | 48 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerStartSamplingFuzzTest()
|
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilerstopsampling_fuzzer/ |
D | heapprofilerstopsampling_fuzzer.cpp | 48 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerStopSamplingFuzzTest()
|
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilergetsamplingprofile_fuzzer/ |
D | heapprofilergetsamplingprofile_fuzzer.cpp | 48 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerGetSamplingProfileFuzzTest()
|
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilertakeheapsnapshot_fuzzer/ |
D | heapprofilertakeheapsnapshot_fuzzer.cpp | 48 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerTakeHeapSnapshotFuzzTest()
|
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilerstarttrackingheapobjects_fuzzer/ |
D | heapprofilerstarttrackingheapobjects_fuzzer.cpp | 49 … std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerStartTrackingHeapObjectsFuzzTest()
|
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofileraddinspectedheapobject_fuzzer/ |
D | heapprofileraddinspectedheapobject_fuzzer.cpp | 50 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerAddInspectedHeapObjectFuzzTest()
|
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilerenable_fuzzer/ |
D | heapprofilerenable_fuzzer.cpp | 50 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerEnableFuzzTest()
|
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilergetheapobjectid_fuzzer/ |
D | heapprofilergetheapobjectid_fuzzer.cpp | 50 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerGetheapObjectIdFuzzTest()
|