Home
last modified time | relevance | path

Searched defs:channel (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/toolchain/tooling/agent/
Dtracing_impl.h29 … 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()
Dprofiler_impl.h29 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()
Druntime_impl.h28 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()
Dheapprofiler_impl.h38 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()
Ddebugger_impl.h110 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<DebuggerImpl> debugger) in DispatcherImpl()
185 explicit Frontend(ProtocolChannel *channel) : channel_(channel) {} in Frontend()
Ddebugger_impl.cpp43 DebuggerImpl::DebuggerImpl(const EcmaVM *vm, ProtocolChannel *channel, RuntimeImpl *runtime) in DebuggerImpl()
/arkcompiler/toolchain/tooling/test/
Dprofiler_impl_test.cpp54 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
63 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
73 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
85 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
95 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
105 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
113 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
121 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
129 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
140 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
[all …]
Dheapprofiler_impl_test.cpp54 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
64 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
73 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
82 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
91 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
102 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
113 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
123 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
132 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
142 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
[all …]
Dtracing_impl_test.cpp54 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
62 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
71 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
80 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
91 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
103 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() local
125 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() local
143 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() local
161 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() local
179 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() local
[all …]
Druntime_impl_test.cpp58 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() local
81 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() local
100 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() local
119 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() local
138 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() local
162 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() local
187 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() local
Ddispatcher_test.cpp140 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() local
/arkcompiler/toolchain/tooling/
Ddispatcher.h117 explicit DispatcherBase(ProtocolChannel *channel) : channel_(channel) {} in DispatcherBase()
Ddispatcher.cpp132 Dispatcher::Dispatcher(const EcmaVM *vm, ProtocolChannel *channel) in Dispatcher()