Home
last modified time | relevance | path

Searched refs:StartSession (Results 1 – 20 of 20) sorted by relevance

/developtools/profiler/device/plugins/api/test/unittest/
Dplugin_module_test.cpp96 …EXPECT_TRUE(plugin->StartSession(reinterpret_cast<const uint8_t*>(cfgData.c_str()), cfgData.size()…
102 EXPECT_TRUE(plugin->StartSession(nullptr, 0));
106 …EXPECT_TRUE(plugin->StartSession(reinterpret_cast<const uint8_t*>(cfgData.c_str()), cfgData.size()…
111 EXPECT_TRUE(plugin->StartSession(nullptr, 0));
143 EXPECT_FALSE(plugin->StartSession(nullptr, 0));
/developtools/profiler/device/services/profiler_service/test/unittest/
Dprofiler_service_test.cpp116 grpc::Status StartSession(uint32_t sessionId) in StartSession() function in __anonb09dd57f0111::ProfilerServiceTest
123 return service_->StartSession(context_.get(), &request, &response); in StartSession()
648 auto status = StartSession(0);
662 auto status = StartSession(sessionId);
676 auto status = StartSession(sessionId);
703 auto status = service_->StartSession(context_.get(), &request, &response);
751 EXPECT_EQ(StartSession(sessionId).error_code(), grpc::StatusCode::OK);
775 auto status = service_->StartSession(context_.get(), nullptr, response.get());
778 status = service_->StartSession(context_.get(), &request, nullptr);
781 status = service_->StartSession(context_.get(), nullptr, nullptr);
[all …]
Dprofiler_service_performance_test.cpp338 …grpc::Status startStatus = profilerStub_->StartSession(&startContext, startRequest, &startResponse… in StartPluginSession()
/developtools/profiler/device/services/profiler_service/test/fuzztest/profilerstartsession_fuzzer/
Dprofilerstartsession_fuzzer.cpp37 profilerService->StartSession(serverContext.get(), &request, response.get()); in ProfilerStartSessionFuzzTest()
/developtools/profiler/device/plugins/api/src/
Dplugin_module.h66 bool StartSession(const uint8_t* buffer, uint32_t size);
Dplugin_module.cpp221 bool PluginModule::StartSession(const uint8_t* buffer, uint32_t size) in StartSession() function in PluginModule
Dplugin_manager.cpp289 … if (!plugin->StartSession(reinterpret_cast<const uint8_t*>(cfgData.c_str()), cfgData.size())) { in StartPluginSession()
/developtools/profiler/protos/services/
Dprofiler_service.proto31 rpc StartSession(StartSessionRequest) returns (StartSessionResponse); rpc
Dprofiler_service_types.proto76 // for StartSession
/developtools/profiler/host/smartperf/ide/src/trace/proto/
Dprofiler_service.proto34 rpc StartSession(StartSessionRequest) returns (StartSessionResponse); rpc
Dprofiler_service_types.proto72 // for StartSession
/developtools/smartperf_host/ide/src/trace/proto/
Dprofiler_service.proto34 rpc StartSession(StartSessionRequest) returns (StartSessionResponse); rpc
Dprofiler_service_types.proto72 // for StartSession
/developtools/profiler/host/smartperf/trace_streamer/src/protos/services/
Dprofiler_service.proto31 rpc StartSession(StartSessionRequest) returns (StartSessionResponse); rpc
Dprofiler_service_types.proto75 // for StartSession
/developtools/smartperf_host/trace_streamer/src/protos/services/
Dprofiler_service.proto31 rpc StartSession(StartSessionRequest) returns (StartSessionResponse); rpc
Dprofiler_service_types.proto75 // for StartSession
/developtools/profiler/device/services/profiler_service/include/
Dprofiler_service.h53 ::grpc::Status StartSession(::grpc::ServerContext* context,
/developtools/profiler/device/cmds/src/
Dmain.cpp224 grpc::Status status = profilerStub->StartSession(&startContext, startRequest, &startResponse); in CheckStartSession()
/developtools/profiler/device/services/profiler_service/src/
Dprofiler_service.cpp463 Status ProfilerService::StartSession(ServerContext* context, in StartSession() function in ProfilerService