/arkcompiler/toolchain/tooling/ |
D | protocol_channel.h | 26 class ProtocolChannel { 28 ProtocolChannel() = default; 29 virtual ~ProtocolChannel() = default; 38 NO_COPY_SEMANTIC(ProtocolChannel); 39 NO_MOVE_SEMANTIC(ProtocolChannel);
|
D | dispatcher.h | 29 class ProtocolChannel; variable 117 explicit DispatcherBase(ProtocolChannel *channel) : channel_(channel) {} in DispatcherBase() 129 ProtocolChannel *channel_ {nullptr}; 137 explicit Dispatcher(const EcmaVM *vm, ProtocolChannel *channel);
|
D | protocol_handler.h | 27 class ProtocolHandler final : public ProtocolChannel {
|
D | dispatcher.cpp | 132 Dispatcher::Dispatcher(const EcmaVM *vm, ProtocolChannel *channel) in Dispatcher()
|
/arkcompiler/toolchain/tooling/test/ |
D | profiler_impl_test.cpp | 54 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 63 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 73 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 85 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 95 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 105 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 113 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 121 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 129 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 140 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() [all …]
|
D | heapprofiler_impl_test.cpp | 54 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 64 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 73 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 82 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 91 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 102 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 113 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 123 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 132 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 142 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() [all …]
|
D | tracing_impl_test.cpp | 54 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 62 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 71 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 80 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 91 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() 103 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 125 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 143 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 161 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 179 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() [all …]
|
D | debugger_impl_test.cpp | 59 ProtocolChannel *protocolChannel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 87 ProtocolChannel *protocolChannel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 117 ProtocolChannel *protocolChannel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 148 ProtocolChannel *protocolChannel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 176 ProtocolChannel *protocolChannel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 204 ProtocolChannel *protocolChannel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 235 ProtocolChannel *protocolChannel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 266 ProtocolChannel *protocolChannel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 294 ProtocolChannel *protocolChannel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 334 ProtocolChannel *protocolChannel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() [all …]
|
D | runtime_impl_test.cpp | 58 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 81 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 100 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 119 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 138 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 162 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() 187 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0()
|
D | dispatcher_test.cpp | 140 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0()
|
/arkcompiler/toolchain/tooling/agent/ |
D | tracing_impl.h | 29 … explicit TracingImpl(const EcmaVM *vm, ProtocolChannel *channel) : vm_(vm), frontend_(channel) {} in TracingImpl() 41 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<TracingImpl> tracing) in DispatcherImpl() 61 explicit Frontend(ProtocolChannel *channel) : channel_(channel) {} in Frontend() 70 ProtocolChannel *channel_ {nullptr};
|
D | profiler_impl.h | 29 ProfilerImpl(const EcmaVM *vm, ProtocolChannel *channel) : vm_(vm), frontend_(channel) {} in ProfilerImpl() 47 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<ProfilerImpl> profiler) in DispatcherImpl() 75 explicit Frontend(ProtocolChannel *channel) : channel_(channel) {} in Frontend() 83 ProtocolChannel *channel_ {nullptr};
|
D | heapprofiler_impl.h | 38 explicit HeapProfilerImpl(const EcmaVM *vm, ProtocolChannel *channel) in HeapProfilerImpl() 60 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<HeapProfilerImpl> heapprofiler) in DispatcherImpl() 92 explicit Frontend(ProtocolChannel *channel) : channel_(channel) {} in Frontend() 104 ProtocolChannel *channel_ {nullptr};
|
D | runtime_impl.h | 28 RuntimeImpl(const EcmaVM *vm, ProtocolChannel *channel) in RuntimeImpl() 49 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<RuntimeImpl> runtime) in DispatcherImpl() 154 explicit Frontend(ProtocolChannel *channel) : channel_(channel) {} in Frontend() 162 ProtocolChannel *channel_ {nullptr};
|
D | debugger_impl.h | 37 DebuggerImpl(const EcmaVM *vm, ProtocolChannel *channel, RuntimeImpl *runtime); 110 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<DebuggerImpl> debugger) in DispatcherImpl() 185 explicit Frontend(ProtocolChannel *channel) : channel_(channel) {} in Frontend() 200 ProtocolChannel *channel_ {nullptr};
|
D | debugger_impl.cpp | 43 DebuggerImpl::DebuggerImpl(const EcmaVM *vm, ProtocolChannel *channel, RuntimeImpl *runtime) in DebuggerImpl()
|
/arkcompiler/toolchain/tooling/test/utils/ |
D | test_channel.h | 22 class TestChannel : public ProtocolChannel {
|