Home
last modified time | relevance | path

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

/developtools/profiler/device/plugins/api/test/unittest/
Dplugin_module_test.cpp100 EXPECT_TRUE(plugin->StopSession());
104 EXPECT_TRUE(plugin->StopSession());
109 EXPECT_TRUE(plugin->StopSession());
113 EXPECT_TRUE(plugin->StopSession());
147 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.cpp126 grpc::Status StopSession(uint32_t sessionId) in StopSession() function in __anon2e0976600111::ProfilerServiceTest
133 return service_->StopSession(context_.get(), &request, &response); in StopSession()
816 auto status = StopSession(0);
830 auto status = StopSession(sessionId);
848 auto status = StopSession(sessionId);
904 EXPECT_EQ(StopSession(sessionId).error_code(), grpc::StatusCode::OK);
929 auto status = service_->StopSession(context_.get(), nullptr, response.get());
932 status = service_->StopSession(context_.get(), &request, nullptr);
935 status = service_->StopSession(context_.get(), nullptr, nullptr);
957 auto status = service_->StopSession(nullptr, &request, response.get());
[all …]
Dprofiler_service_performance_test.cpp366 … grpc::Status stopStatus = profilerStub_->StopSession(&stopContext, stopRequest, &stopResponse); in StopPluginSession()
/developtools/profiler/device/plugins/api/src/
Dplugin_module.h67 bool StopSession();
Dplugin_manager.cpp170 if (!pluginModules_[index]->StopSession()) { in RemovePlugin()
346 if (!pluginModules_[id]->StopSession()) { in StopPluginSession()
Dplugin_module.cpp234 bool PluginModule::StopSession() in StopSession() function in PluginModule
/developtools/profiler/protos/services/
Dprofiler_service.proto37 rpc StopSession(StopSessionRequest) returns (StopSessionResponse); rpc
Dprofiler_service_types.proto102 // for StopSession
/developtools/smartperf_host/trace_streamer/src/protos/services/
Dprofiler_service.proto37 rpc StopSession(StopSessionRequest) returns (StopSessionResponse); rpc
Dprofiler_service_types.proto101 // for StopSession
/developtools/hdc/src/host/
Dhost_uart.h44 void StopSession(HSession hSession) override;
Dhost_uart.cpp687 void HdcHostUART::StopSession(HSession hSession) in EnumSerialPort() function in Hdc::HdcHostUART
716 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.cpp804 HWTEST_F(HdcHostUARTTest, StopSession, TestSize.Level1)
807 mockHostUART.StopSession(nullptr);
809 mockHostUART.StopSession(&mySession);
Duart_test.cpp793 HWTEST_F(HdcUARTBaseTest, StopSession, TestSize.Level1)
820 mockUARTBase.StopSession(&session);
/developtools/hdc/src/common/
Duart.h168 virtual void StopSession(HSession hSession);
Duart.cpp1007 void HdcUARTBase::StopSession(HSession hSession) in StopSession() function in Hdc::HdcUARTBase
Dsession.cpp523 uartBase->StopSession(hSession); in FreeSessionByConnectType()
/developtools/profiler/device/cmds/src/
Dmain.cpp244 grpc::Status status = profilerStub->StopSession(&stopContext, stopRequest, &stopResponse); in CheckStopSession()
/developtools/profiler/device/services/profiler_service/src/
Dprofiler_service.cpp575 Status ProfilerService::StopSession(ServerContext* context, in StopSession() function in ProfilerService