Home
last modified time | relevance | path

Searched refs:channel (Results 1 – 14 of 14) sorted by relevance

/arkcompiler/toolchain/tooling/test/
Dprofiler_impl_test.cpp54 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
55 auto profiler = std::make_unique<ProfilerImpl>(ecmaVm, channel); in HWTEST_F_L0()
63 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
64 auto profiler = std::make_unique<ProfilerImpl>(ecmaVm, channel); in HWTEST_F_L0()
73 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
74 auto profiler = std::make_unique<ProfilerImpl>(ecmaVm, channel); in HWTEST_F_L0()
85 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
86 auto profiler = std::make_unique<ProfilerImpl>(ecmaVm, channel); in HWTEST_F_L0()
95 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
97 auto profiler = std::make_unique<ProfilerImpl>(ecmaVm, channel); in HWTEST_F_L0()
[all …]
Dtracing_impl_test.cpp54 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
55 auto tracing = std::make_unique<TracingImpl>(ecmaVm, channel); in HWTEST_F_L0()
62 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
63 auto tracing = std::make_unique<TracingImpl>(ecmaVm, channel); in HWTEST_F_L0()
71 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
72 auto tracing = std::make_unique<TracingImpl>(ecmaVm, channel); in HWTEST_F_L0()
80 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
81 auto tracing = std::make_unique<TracingImpl>(ecmaVm, channel); in HWTEST_F_L0()
91 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
92 auto tracing = std::make_unique<TracingImpl>(ecmaVm, channel); in HWTEST_F_L0()
[all …]
Dheapprofiler_impl_test.cpp54 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
56 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel); in HWTEST_F_L0()
64 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
65 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel); in HWTEST_F_L0()
73 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
74 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel); in HWTEST_F_L0()
82 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
83 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel); in HWTEST_F_L0()
91 ProtocolChannel *channel = nullptr; in HWTEST_F_L0() local
92 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel); in HWTEST_F_L0()
[all …]
Druntime_impl_test.cpp58 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() local
59 auto runtimeImpl = std::make_unique<RuntimeImpl>(ecmaVm, channel); in HWTEST_F_L0()
60 …auto dispatcherImpl = std::make_unique<RuntimeImpl::DispatcherImpl>(channel, std::move(runtimeImpl… in HWTEST_F_L0()
70 if (channel != nullptr) { in HWTEST_F_L0()
71 delete channel; in HWTEST_F_L0()
72 channel = nullptr; in HWTEST_F_L0()
81 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() local
82 auto runtimeImpl = std::make_unique<RuntimeImpl>(ecmaVm, channel); in HWTEST_F_L0()
83 …auto dispatcherImpl = std::make_unique<RuntimeImpl::DispatcherImpl>(channel, std::move(runtimeImpl… in HWTEST_F_L0()
89 if (channel != nullptr) { in HWTEST_F_L0()
[all …]
Ddispatcher_test.cpp140 ProtocolChannel *channel = new ProtocolHandler(callback, ecmaVm); in HWTEST_F_L0() local
141 auto dispatcher = std::make_unique<Dispatcher>(ecmaVm, channel); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/
Ddispatcher.cpp132 Dispatcher::Dispatcher(const EcmaVM *vm, ProtocolChannel *channel) in Dispatcher() argument
136 auto profiler = std::make_unique<ProfilerImpl>(vm, channel); in Dispatcher()
138 std::make_unique<ProfilerImpl::DispatcherImpl>(channel, std::move(profiler)); in Dispatcher()
141 auto heapProfiler = std::make_unique<HeapProfilerImpl>(vm, channel); in Dispatcher()
143 std::make_unique<HeapProfilerImpl::DispatcherImpl>(channel, std::move(heapProfiler)); in Dispatcher()
145 auto tracing = std::make_unique<TracingImpl>(vm, channel); in Dispatcher()
147 std::make_unique<TracingImpl::DispatcherImpl>(channel, std::move(tracing)); in Dispatcher()
150 auto runtime = std::make_unique<RuntimeImpl>(vm, channel); in Dispatcher()
151 auto debugger = std::make_unique<DebuggerImpl>(vm, channel, runtime.get()); in Dispatcher()
153 std::make_unique<RuntimeImpl::DispatcherImpl>(channel, std::move(runtime)); in Dispatcher()
[all …]
Ddispatcher.h117 explicit DispatcherBase(ProtocolChannel *channel) : channel_(channel) {} in DispatcherBase() argument
137 explicit Dispatcher(const EcmaVM *vm, ProtocolChannel *channel);
/arkcompiler/toolchain/tooling/agent/
Dtracing_impl.h29 … explicit TracingImpl(const EcmaVM *vm, ProtocolChannel *channel) : vm_(vm), frontend_(channel) {} in TracingImpl() argument
41 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<TracingImpl> tracing) in DispatcherImpl() argument
42 : DispatcherBase(channel), tracing_(std::move(tracing)) {} in DispatcherImpl()
61 explicit Frontend(ProtocolChannel *channel) : channel_(channel) {} in Frontend() argument
Dprofiler_impl.h29 ProfilerImpl(const EcmaVM *vm, ProtocolChannel *channel) : vm_(vm), frontend_(channel) {} in ProfilerImpl() argument
47 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<ProfilerImpl> profiler) in DispatcherImpl() argument
48 : DispatcherBase(channel), profiler_(std::move(profiler)) {} in DispatcherImpl()
75 explicit Frontend(ProtocolChannel *channel) : channel_(channel) {} in Frontend() argument
Dheapprofiler_impl.h38 explicit HeapProfilerImpl(const EcmaVM *vm, ProtocolChannel *channel) in HeapProfilerImpl() argument
39 : vm_(vm), frontend_(channel), stream_(&frontend_) {} in HeapProfilerImpl()
60 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<HeapProfilerImpl> heapprofiler) in DispatcherImpl() argument
61 : DispatcherBase(channel), heapprofiler_(std::move(heapprofiler)) {} in DispatcherImpl()
92 explicit Frontend(ProtocolChannel *channel) : channel_(channel) {} in Frontend() argument
Druntime_impl.h28 RuntimeImpl(const EcmaVM *vm, ProtocolChannel *channel) in RuntimeImpl() argument
29 : vm_(vm), frontend_(channel) {} in RuntimeImpl()
49 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<RuntimeImpl> runtime) in DispatcherImpl() argument
50 : DispatcherBase(channel), runtime_(std::move(runtime)) {} in DispatcherImpl()
154 explicit Frontend(ProtocolChannel *channel) : channel_(channel) {} in Frontend() argument
Ddebugger_impl.h37 DebuggerImpl(const EcmaVM *vm, ProtocolChannel *channel, RuntimeImpl *runtime);
110 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<DebuggerImpl> debugger) in DispatcherImpl() argument
111 : DispatcherBase(channel), debugger_(std::move(debugger)) {} in DispatcherImpl()
185 explicit Frontend(ProtocolChannel *channel) : channel_(channel) {} in Frontend() argument
Ddebugger_impl.cpp43 DebuggerImpl::DebuggerImpl(const EcmaVM *vm, ProtocolChannel *channel, RuntimeImpl *runtime) in DebuggerImpl() argument
44 : vm_(vm), frontend_(channel), runtime_(runtime) in DebuggerImpl()
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
Dcocos_worker_test.js56791 get channel() {
58455 e = i.channel.curve;
58507 e.channel.curve.assignSorted(l, a.map((t => ({
58511 u.convertQuatCurve(e.channel.curve);
58562 e.channel.curve.assignSorted(l, a.map((t => ({
58609 e.channel.curve.assignSorted(l, a);