• Home
  • Raw
  • Download

Lines Matching full:std

55     auto tracing = std::make_unique<TracingImpl>(ecmaVm, channel);  in HWTEST_F_L0()
63 auto tracing = std::make_unique<TracingImpl>(ecmaVm, channel); in HWTEST_F_L0()
64 std::vector<std::string> categories = {}; in HWTEST_F_L0()
72 auto tracing = std::make_unique<TracingImpl>(ecmaVm, channel); in HWTEST_F_L0()
73 std::string syncId; in HWTEST_F_L0()
81 auto tracing = std::make_unique<TracingImpl>(ecmaVm, channel); in HWTEST_F_L0()
82 auto params = std::make_unique<RequestMemoryDumpParams>(); in HWTEST_F_L0()
83 std::string dumpGuid; in HWTEST_F_L0()
85 DispatchResponse response = tracing->RequestMemoryDump(std::move(params), dumpGuid, success); in HWTEST_F_L0()
92 auto tracing = std::make_unique<TracingImpl>(ecmaVm, channel); in HWTEST_F_L0()
93 auto params = std::make_unique<StartParams>(); in HWTEST_F_L0()
94 DispatchResponse response = tracing->Start(std::move(params)); in HWTEST_F_L0()
100 std::string result = ""; in HWTEST_F_L0()
101 std::function<void(const void*, const std::string &)> callback = in HWTEST_F_L0()
102 [&result]([[maybe_unused]]const void* ptr, const std::string &temp) { result = temp; }; in HWTEST_F_L0()
104 auto tracing = std::make_unique<TracingImpl>(ecmaVm, channel); in HWTEST_F_L0()
105 … auto dispatcherImpl = std::make_unique<TracingImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0()
106 std::string msg = std::string() + R"({"id":0,"method":"Debugger.Test","params":{}})";; in HWTEST_F_L0()
109 ASSERT_TRUE(result.find("Unknown method: Test") != std::string::npos); in HWTEST_F_L0()
110 msg = std::string() + R"({"id":0,"method":"Debugger.end","params":{}})"; in HWTEST_F_L0()
117 ASSERT_TRUE(result.find("End not support now.") != std::string::npos); in HWTEST_F_L0()
122 std::string result = ""; in HWTEST_F_L0()
123 std::function<void(const void*, const std::string &)> callback = in HWTEST_F_L0()
124 [&result]([[maybe_unused]]const void* ptr, const std::string &temp) { result = temp; }; in HWTEST_F_L0()
126 auto tracing = std::make_unique<TracingImpl>(ecmaVm, channel); in HWTEST_F_L0()
127 … auto dispatcherImpl = std::make_unique<TracingImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0()
128 std::string msg = std::string() + R"({"id":0,"method":"Debugger.end","params":{}})"; in HWTEST_F_L0()
135 ASSERT_TRUE(result.find("End not support now.") != std::string::npos); in HWTEST_F_L0()
140 std::string result = ""; in HWTEST_F_L0()
141 std::function<void(const void*, const std::string &)> callback = in HWTEST_F_L0()
142 [&result]([[maybe_unused]]const void* ptr, const std::string &temp) { result = temp; }; in HWTEST_F_L0()
144 auto tracing = std::make_unique<TracingImpl>(ecmaVm, channel); in HWTEST_F_L0()
145 … auto dispatcherImpl = std::make_unique<TracingImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0()
146 std::string msg = std::string() + R"({"id":0,"method":"Debugger.getCategories","params":{}})"; in HWTEST_F_L0()
153 ASSERT_TRUE(result.find("GetCategories not support now") != std::string::npos); in HWTEST_F_L0()
158 std::string result = ""; in HWTEST_F_L0()
159 std::function<void(const void*, const std::string &)> callback = in HWTEST_F_L0()
160 [&result]([[maybe_unused]]const void* ptr, const std::string &temp) { result = temp; }; in HWTEST_F_L0()
162 auto tracing = std::make_unique<TracingImpl>(ecmaVm, channel); in HWTEST_F_L0()
163 … auto dispatcherImpl = std::make_unique<TracingImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0()
164std::string msg = std::string() + R"({"id":0,"method":"Debugger.recordClockSyncMarker","params":{}… in HWTEST_F_L0()
171 ASSERT_TRUE(result.find("RecordClockSyncMarker not support now.") != std::string::npos); in HWTEST_F_L0()
176 std::string result = ""; in HWTEST_F_L0()
177 std::function<void(const void*, const std::string &)> callback = in HWTEST_F_L0()
178 [&result]([[maybe_unused]]const void* ptr, const std::string &temp) { result = temp; }; in HWTEST_F_L0()
180 auto tracing = std::make_unique<TracingImpl>(ecmaVm, channel); in HWTEST_F_L0()
181 … auto dispatcherImpl = std::make_unique<TracingImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0()
182std::string msg = std::string() + R"({"id":0,"method":"Debugger.requestMemoryDump","params":{}})"; in HWTEST_F_L0()
189 ASSERT_TRUE(result.find("RequestMemoryDump not support now.") != std::string::npos); in HWTEST_F_L0()
194 std::string result = ""; in HWTEST_F_L0()
195 std::function<void(const void*, const std::string &)> callback = in HWTEST_F_L0()
196 [&result]([[maybe_unused]]const void* ptr, const std::string &temp) { result = temp; }; in HWTEST_F_L0()
198 auto tracing = std::make_unique<TracingImpl>(ecmaVm, channel); in HWTEST_F_L0()
199 … auto dispatcherImpl = std::make_unique<TracingImpl::DispatcherImpl>(channel, std::move(tracing)); in HWTEST_F_L0()
200 std::string msg = std::string() + R"({"id":0,"method":"Debugger.start","params":{}})"; in HWTEST_F_L0()
207 ASSERT_TRUE(result.find("Start not support now.") != std::string::npos); in HWTEST_F_L0()
212 std::string result = ""; in HWTEST_F_L0()
213 std::function<void(const void*, const std::string &)> callback = in HWTEST_F_L0()
214 [&result]([[maybe_unused]]const void* ptr, const std::string &temp) { result = temp; }; in HWTEST_F_L0()
216 auto frontend = std::make_unique<TracingImpl::Frontend>(channel); in HWTEST_F_L0()
222 auto frontend1 = std::make_unique<TracingImpl::Frontend>(channel); in HWTEST_F_L0()
228 ASSERT_TRUE(result.find("Tracing.BufferUsage") != std::string::npos); in HWTEST_F_L0()
234 std::string result = ""; in HWTEST_F_L0()
235 std::function<void(const void*, const std::string &)> callback = in HWTEST_F_L0()
236 [&result]([[maybe_unused]]const void* ptr, const std::string &temp) { result = temp; }; in HWTEST_F_L0()
238 auto frontend = std::make_unique<TracingImpl::Frontend>(channel); in HWTEST_F_L0()
244 auto frontend1 = std::make_unique<TracingImpl::Frontend>(channel); in HWTEST_F_L0()
250 ASSERT_TRUE(result.find("Tracing.DataCollected") != std::string::npos); in HWTEST_F_L0()
255 std::string result = ""; in HWTEST_F_L0()
256 std::function<void(const void*, const std::string &)> callback = in HWTEST_F_L0()
257 [&result]([[maybe_unused]]const void* ptr, const std::string &temp) { result = temp; }; in HWTEST_F_L0()
259 auto frontend = std::make_unique<TracingImpl::Frontend>(channel); in HWTEST_F_L0()
265 auto frontend1 = std::make_unique<TracingImpl::Frontend>(channel); in HWTEST_F_L0()
271 ASSERT_TRUE(result.find("Tracing.TracingComplete") != std::string::npos); in HWTEST_F_L0()