Home
last modified time | relevance | path

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

/system/core/libutils/
DPropertyMap.cpp75 String8 stringValue; in tryGetProperty() local
76 if (! tryGetProperty(key, stringValue) || stringValue.length() == 0) { in tryGetProperty()
81 int value = strtol(stringValue.string(), & end, 10); in tryGetProperty()
84 key.string(), stringValue.string()); in tryGetProperty()
92 String8 stringValue; in tryGetProperty() local
93 if (! tryGetProperty(key, stringValue) || stringValue.length() == 0) { in tryGetProperty()
98 float value = strtof(stringValue.string(), & end); in tryGetProperty()
101 key.string(), stringValue.string()); in tryGetProperty()
/system/libvintf/
Dparse_xml.cpp413 std::string stringValue; in buildObject() local
415 !parseText(root, &stringValue)) { in buildObject()
418 if (!::android::vintf::parseKernelConfigValue(stringValue, object)) { in buildObject()
419 this->mLastError = "Could not parse kernel config value \"" + stringValue + "\""; in buildObject()