Lines Matching refs:idx
248 for (size_t idx = 0; idx < config.size(); ++idx) { in CreatePluginSession() local
249 HILOG_DEBUG(LOG_CORE, "%s:config->name() = %s", __func__, config[idx].name().c_str()); in CreatePluginSession()
250 auto it = pluginIds_.find(config[idx].name()); in CreatePluginSession()
256 …HILOG_INFO(LOG_CORE, "%s:index = %d, clock = %s", __func__, it->second, config[idx].clock().c_str(… in CreatePluginSession()
257 pluginModules_[it->second]->SetConfigData(config[idx].config_data()); in CreatePluginSession()
258 pluginModules_[it->second]->SetClockId(COMMON::GetClockId(config[idx].clock())); in CreatePluginSession()
279 size_t idx = 0; in StartPluginSession() local
294 if (idx > config.size()) { in StartPluginSession()
295 HILOG_WARN(LOG_CORE, "%s:idx %zu out of size %zu", __func__, idx, config.size()); in StartPluginSession()
298 auto interval = ScheduleTaskManager::ms(config[idx].sample_interval()); in StartPluginSession()
299 std::string pluginName = config[idx].name(); in StartPluginSession()
321 idx++; in StartPluginSession()