Lines Matching refs:iter
127 auto iter = data.find(strSensorPath); in constructSEL() local
128 assert(iter != data.end()); in constructSEL()
129 const auto& sensorPath = iter->second; in constructSEL()
138 iter = data.find(strEventDir); in constructSEL()
139 assert(iter != data.end()); in constructSEL()
140 auto eventDir = static_cast<uint8_t>(convert(iter->second)); in constructSEL()
148 iter = data.find(strGenerateId); in constructSEL()
149 assert(iter != data.end()); in constructSEL()
151 static_cast<uint16_t>(convert(iter->second)); in constructSEL()
153 iter = data.find(strSensorData); in constructSEL()
154 assert(iter != data.end()); in constructSEL()
155 auto sensorData = convertVec(iter->second); in constructSEL()
163 ipmi::sensor::InvObjectIDMap::const_iterator iter) in prepareSELEntry() argument
231 if (iter == invSensors.end()) in prepareSELEntry()
266 record.event.eventRecord.sensorType = iter->second.sensorType; in prepareSELEntry()
267 record.event.eventRecord.sensorNum = iter->second.sensorID; in prepareSELEntry()
268 record.event.eventRecord.eventData1 = iter->second.eventOffset; in prepareSELEntry()
282 deassertEvent | iter->second.eventReadingType; in prepareSELEntry()
286 record.event.eventRecord.eventType = iter->second.eventReadingType; in prepareSELEntry()
327 auto iter = invSensors.find(std::get<2>(item)); in convertLogEntrytoSEL() local
328 if (iter == invSensors.end()) in convertLogEntrytoSEL()
330 iter = invSensors.find(BOARD_SENSOR); in convertLogEntrytoSEL()
331 if (iter == invSensors.end()) in convertLogEntrytoSEL()
338 return internal::prepareSELEntry(objPath, iter); in convertLogEntrytoSEL()
344 auto iter = invSensors.find(SYSTEM_SENSOR); in convertLogEntrytoSEL() local
345 return internal::prepareSELEntry(objPath, iter); in convertLogEntrytoSEL()