Lines Matching refs:logEventValues
24 const std::vector<FieldValue>& logEventValues = event.getValues(); in toSocketLossInfo() local
28 if (logEventValues.size() < 7) { in toSocketLossInfo()
36 if (logEventValues[1].mField.getPosAtDepth(0) == 2 && in toSocketLossInfo()
37 logEventValues[1].mValue.getType() == LONG) { in toSocketLossInfo()
38 result.firstLossTsNanos = logEventValues[1].mValue.long_value; in toSocketLossInfo()
44 if (logEventValues[2].mField.getPosAtDepth(0) == 3 && in toSocketLossInfo()
45 logEventValues[2].mValue.getType() == LONG) { in toSocketLossInfo()
46 result.lastLossTsNanos = logEventValues[2].mValue.long_value; in toSocketLossInfo()
52 if (logEventValues[3].mField.getPosAtDepth(0) == 4 && in toSocketLossInfo()
53 logEventValues[3].mValue.getType() == INT) { in toSocketLossInfo()
54 result.overflowCounter = logEventValues[3].mValue.int_value; in toSocketLossInfo()
64 const size_t expectedEntriesCount = (logEventValues.size() - arraysOffset) / 3; in toSocketLossInfo()
72 std::vector<FieldValue>::const_iterator valuesIt = logEventValues.begin() + arraysOffset; in toSocketLossInfo()
73 while (valuesIt != logEventValues.end() && valuesIt->mField.getPosAtDepth(0) == 5 && in toSocketLossInfo()
83 while (valuesIt != logEventValues.end() && valuesIt->mField.getPosAtDepth(0) == 6 && in toSocketLossInfo()
93 while (valuesIt != logEventValues.end() && valuesIt->mField.getPosAtDepth(0) == 7 && in toSocketLossInfo()
103 if (valuesIt != logEventValues.end()) { in toSocketLossInfo()