Lines Matching refs:dataRepeater
120 …E(service->pluginSessionManager_->CreatePluginSessions(pluginConfigs, bufferConfigs, dataRepeater), in CreatePluginSessions()
123 …CHECK_TRUE(service->pluginSessionManager_->CreatePluginSessions(pluginConfigs, dataRepeater), fals… in CreatePluginSessions()
134 if (dataRepeater) { in StartPluginSessions()
135 dataRepeater->Reset(); in StartPluginSessions()
182 if (dataRepeater) { in StopPluginSessions()
183 dataRepeater->Close(); in StopPluginSessions()
285 std::shared_ptr<ProfilerDataRepeater> dataRepeater = nullptr; in CreateSession() local
305 dataRepeater = std::make_shared<ProfilerDataRepeater>(DEFAULT_REPEATER_BUFFER_SIZE); in CreateSession()
306 CHECK_POINTER_NOTNULL(dataRepeater, "alloc ProfilerDataRepeater failed!"); in CreateSession()
315 if (dataRepeater != nullptr) { in CreateSession()
316 ctx->dataRepeater = dataRepeater; in CreateSession()
536 auto dataRepeater = ctx->dataRepeater; in FetchData() local
537 CHECK_POINTER_NOTNULL(dataRepeater, "repeater invalid!"); in FetchData()
548 int count = dataRepeater->TakePluginData(pluginDataVec); in FetchData()