Home
last modified time | relevance | path

Searched refs:tmpStr (Results 1 – 1 of 1) sorted by relevance

/device/google/cuttlefish/host/libs/location/
DGpxParser.cpp45 xmlChar *tmpStr; in parseLocation() local
49 if (!attr || !(tmpStr = xmlGetProp(ptNode, (const xmlChar *)"lat"))) { in parseLocation()
53 int read = SscanfWithCLocale(reinterpret_cast<const char *>(tmpStr), "%f", in parseLocation()
55 xmlFree(tmpStr); // Caller-freed in parseLocation()
63 if (!attr || !(tmpStr = xmlGetProp(ptNode, (const xmlChar *)"lon"))) { in parseLocation()
67 int read = SscanfWithCLocale(reinterpret_cast<const char *>(tmpStr), "%f", in parseLocation()
69 xmlFree(tmpStr); // Caller-freed in parseLocation()
84 tmpStr = nullptr; in parseLocation()
87 if ((tmpStr = xmlNodeListGetString(doc, field->children, 1))) { in parseLocation()
91 int results = sscanf((const char *)tmpStr, "%u-%u-%uT%u:%u:%u", in parseLocation()
[all …]