Home
last modified time | relevance | path

Searched refs:DispatcherImpl (Results 1 – 25 of 29) sorted by relevance

12

/arkcompiler/toolchain/tooling/agent/
Dprofiler_impl.cpp24 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 …]
Dtracing_impl.cpp24 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 …]
Dheapprofiler_impl.cpp21 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 …]
Dtracing_impl.h39 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);
Dprofiler_impl.h45 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);
Dheapprofiler_impl.h58 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);
Ddebugger_impl.cpp278 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 …]
Ddebugger_impl.h108 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);
Druntime_impl.h47 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/
Ddebugger_impl_test.cpp90 …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 …]
Druntime_impl_test.cpp60 …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()
Dprofiler_impl_test.cpp169 … 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 …]
Dheapprofiler_impl_test.cpp157 …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 …]
Dtracing_impl_test.cpp105 … 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/
Ddispatcher.cpp138 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/
Dheapprofilercollectgarbage_fuzzer.cpp48 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerCollectgarbageFuzzTest()
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilerstoptrackingheapobjects_fuzzer/
Dheapprofilerstoptrackingheapobjects_fuzzer.cpp48 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerStopTrackingHeapObjectsFuzzTest()
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilerstartsampling_fuzzer/
Dheapprofilerstartsampling_fuzzer.cpp48 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerStartSamplingFuzzTest()
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilerstopsampling_fuzzer/
Dheapprofilerstopsampling_fuzzer.cpp48 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerStopSamplingFuzzTest()
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilergetsamplingprofile_fuzzer/
Dheapprofilergetsamplingprofile_fuzzer.cpp48 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerGetSamplingProfileFuzzTest()
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilertakeheapsnapshot_fuzzer/
Dheapprofilertakeheapsnapshot_fuzzer.cpp48 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerTakeHeapSnapshotFuzzTest()
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilerstarttrackingheapobjects_fuzzer/
Dheapprofilerstarttrackingheapobjects_fuzzer.cpp49 … std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerStartTrackingHeapObjectsFuzzTest()
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofileraddinspectedheapobject_fuzzer/
Dheapprofileraddinspectedheapobject_fuzzer.cpp50 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerAddInspectedHeapObjectFuzzTest()
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilerenable_fuzzer/
Dheapprofilerenable_fuzzer.cpp50 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerEnableFuzzTest()
/arkcompiler/toolchain/test/fuzztest/agent/heapprofiler/heapprofilergetheapobjectid_fuzzer/
Dheapprofilergetheapobjectid_fuzzer.cpp50 std::make_unique<HeapProfilerImpl::DispatcherImpl>(nullptr, std::move(heapProfiler)); in HeapprofilerGetheapObjectIdFuzzTest()

12