Home
last modified time | relevance | path

Searched refs:stringValue (Results 1 – 9 of 9) 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/tools/aidl/tests/android/aidl/loggable/
DILoggableInterface.aidl11 String stringValue, inout String[] stringArray, in LogThis() argument
/system/tools/aidl/tests/android/aidl/tests/
DParcelableForToString.aidl36 String stringValue;
/system/core/libstats/socket/include/
Dstats_event.h118 const char* stringValue; // must be null terminated member
/system/core/libstats/push_compat/
DStatsEventCompat.cpp161 pairs.push_back({.key = it.first, .valueType = STRING_TYPE, .stringValue = it.second}); in writeKeyValuePairs()
/system/core/libstats/socket/
Dstats_event.c240 append_string(event, pairs[i].stringValue); in stats_event_write_key_value_pairs()
/system/libvintf/
Dparse_xml.cpp484 std::string stringValue; in buildObject() local
486 !parseText(root, &stringValue, error)) { in buildObject()
489 if (!::android::vintf::parseKernelConfigValue(stringValue, object)) { in buildObject()
490 *error = "Could not parse kernel config value \"" + stringValue + "\""; in buildObject()
/system/core/libstats/socket/tests/
Dstats_event_test.cpp224 pairs[3] = {.key = 3, .valueType = STRING_TYPE, .stringValue = str.c_str()}; in TEST()
/system/tools/aidl/tests/java_app/src/android/aidl/tests/
DTestServiceClient.java662 p.stringValue = "this is a string"; in testToString()