Searched defs:tryGetProperty (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/libs/utils/
H A DPropertyMap.cpp58 bool PropertyMap::tryGetProperty(const String8& key, String8& outValue) const { function in class:android::PropertyMap
68 bool PropertyMap::tryGetProperty(const String8& key, bool& outValue) const { function in class:android::PropertyMap
70 if (!tryGetProperty(key, intValue)) {
78 bool PropertyMap::tryGetProperty(const String8& key, int32_t& outValue) const { function in class:android::PropertyMap
80 if (! tryGetProperty(key, stringValue) || stringValue.length() == 0) {
95 bool PropertyMap::tryGetProperty(const String8& key, float& outValue) const { function in class:android::PropertyMap
97 if (! tryGetProperty(key, stringValue) || stringValue.length() == 0) {

Completed in 267 milliseconds