Lines Matching refs:tmpString
646 char tmpString[64]; in qpTestLog_writeInteger() local
647 int64ToString(value, tmpString); in qpTestLog_writeInteger()
650 return qpTestLog_writeKeyValuePair(log, "Number", name, description, unit, tag, tmpString); in qpTestLog_writeInteger()
664 char tmpString[64]; in qpTestLog_writeFloat() local
665 floatToString(value, tmpString, sizeof(tmpString)); in qpTestLog_writeFloat()
668 return qpTestLog_writeKeyValuePair(log, "Number", name, description, unit, tag, tmpString); in qpTestLog_writeFloat()
1442 char tmpString[512]; in qpTestLog_writeValueFloat() local
1443 doubleToString(value, tmpString, (int)sizeof(tmpString)); in qpTestLog_writeValueFloat()
1449 if (!qpXmlWriter_writeStringElement(log->writer, "Value", &tmpString[0])) in qpTestLog_writeValueFloat()
1462 char tmpString[64]; in qpTestLog_writeValueInteger() local
1463 int64ToString(value, tmpString); in qpTestLog_writeValueInteger()
1469 if (!qpXmlWriter_writeStringElement(log->writer, "Value", &tmpString[0])) in qpTestLog_writeValueInteger()