Lines Matching refs:tmpString
628 char tmpString[64]; in qpTestLog_writeInteger() local
629 int64ToString(value, tmpString); in qpTestLog_writeInteger()
632 return qpTestLog_writeKeyValuePair(log, "Number", name, description, unit, tag, tmpString); in qpTestLog_writeInteger()
646 char tmpString[64]; in qpTestLog_writeFloat() local
647 floatToString(value, tmpString, sizeof(tmpString)); in qpTestLog_writeFloat()
650 return qpTestLog_writeKeyValuePair(log, "Number", name, description, unit, tag, tmpString); in qpTestLog_writeFloat()
1424 char tmpString[512]; in qpTestLog_writeValueFloat() local
1425 doubleToString(value, tmpString, (int)sizeof(tmpString)); in qpTestLog_writeValueFloat()
1431 if (!qpXmlWriter_writeStringElement(log->writer, "Value", &tmpString[0])) in qpTestLog_writeValueFloat()
1444 char tmpString[64]; in qpTestLog_writeValueInteger() local
1445 int64ToString(value, tmpString); in qpTestLog_writeValueInteger()
1451 if (!qpXmlWriter_writeStringElement(log->writer, "Value", &tmpString[0])) in qpTestLog_writeValueInteger()