Home
last modified time | relevance | path

Searched refs:StopSession (Results 1 – 23 of 23) sorted by relevance

/developtools/profiler/device/plugins/api/test/unittest/
Dplugin_module_test.cpp95 EXPECT_TRUE(plugin->StopSession());
99 EXPECT_TRUE(plugin->StopSession());
104 EXPECT_TRUE(plugin->StopSession());
108 EXPECT_TRUE(plugin->StopSession());
141 EXPECT_FALSE(plugin->StopSession());
/developtools/profiler/device/services/profiler_service/test/fuzztest/profilerstopsession_fuzzer/
Dprofilerstopsession_fuzzer.cpp37 profilerService->StopSession(serverContext.get(), &request, response.get()); in ProfilerStopSessionFuzzTest()
/developtools/profiler/device/services/profiler_service/test/unittest/
Dprofiler_service_test.cpp125 grpc::Status StopSession(uint32_t sessionId) in StopSession() function in __anon744c24610111::ProfilerServiceTest
132 return service_->StopSession(context_.get(), &request, &response); in StopSession()
815 auto status = StopSession(0);
829 auto status = StopSession(sessionId);
847 auto status = StopSession(sessionId);
903 EXPECT_EQ(StopSession(sessionId).error_code(), grpc::StatusCode::OK);
928 auto status = service_->StopSession(context_.get(), nullptr, response.get());
931 status = service_->StopSession(context_.get(), &request, nullptr);
934 status = service_->StopSession(context_.get(), nullptr, nullptr);
956 auto status = service_->StopSession(nullptr, &request, response.get());
[all …]
Dprofiler_service_performance_test.cpp349 … grpc::Status stopStatus = profilerStub_->StopSession(&stopContext, stopRequest, &stopResponse); in StopPluginSession()
/developtools/profiler/device/plugins/api/src/
Dplugin_module.h67 bool StopSession();
Dplugin_manager.cpp168 if (!pluginModules_[index]->StopSession()) { in RemovePlugin()
348 if (!pluginModules_[id]->StopSession()) { in StopPluginSession()
Dplugin_module.cpp240 bool PluginModule::StopSession() in StopSession() function in PluginModule
/developtools/profiler/protos/services/
Dprofiler_service.proto37 rpc StopSession(StopSessionRequest) returns (StopSessionResponse); rpc
Dprofiler_service_types.proto101 // for StopSession
/developtools/profiler/host/smartperf/ide/src/trace/proto/
Dprofiler_service.proto40 rpc StopSession(StopSessionRequest) returns (StopSessionResponse); rpc
Dprofiler_service_types.proto98 // for StopSession
/developtools/profiler/host/smartperf/trace_streamer/src/protos/services/
Dprofiler_service.proto37 rpc StopSession(StopSessionRequest) returns (StopSessionResponse); rpc
Dprofiler_service_types.proto98 // for StopSession
/developtools/hdc/src/host/
Dhost_uart.h44 void StopSession(HSession hSession) override;
Dhost_uart.cpp679 void HdcHostUART::StopSession(HSession hSession) in EnumSerialPort() function in Hdc::HdcHostUART
708 HdcUARTBase::StopSession(hSession); in EnumSerialPort()
/developtools/profiler/device/services/profiler_service/include/
Dprofiler_service.h64 ::grpc::Status StopSession(::grpc::ServerContext* context,
/developtools/hdc/test/unittest/common/
Dhost_uart_test.cpp802 HWTEST_F(HdcHostUARTTest, StopSession, TestSize.Level1)
805 mockHostUART.StopSession(nullptr);
807 mockHostUART.StopSession(&mySession);
Duart_test.cpp793 HWTEST_F(HdcUARTBaseTest, StopSession, TestSize.Level1)
820 mockUARTBase.StopSession(&session);
/developtools/hdc/src/common/
Duart.h167 virtual void StopSession(HSession hSession);
Duart.cpp1000 void HdcUARTBase::StopSession(HSession hSession) in StopSession() function in Hdc::HdcUARTBase
Dsession.cpp500 uartBase->StopSession(hSession); in FreeSessionByConnectType()
/developtools/profiler/device/cmds/src/
Dmain.cpp235 grpc::Status status = profilerStub->StopSession(&stopContext, stopRequest, &stopResponse); in CheckStopSession()
/developtools/profiler/device/services/profiler_service/src/
Dprofiler_service.cpp582 Status ProfilerService::StopSession(ServerContext* context, in StopSession() function in ProfilerService