Searched refs:tryGetProperty (Results 1 – 2 of 2) sorted by relevance
/system/core/libutils/include/utils/ |
D | PropertyMap.h | 69 bool tryGetProperty(const String8& key, String8& outValue) const; 70 bool tryGetProperty(const String8& key, bool& outValue) const; 71 bool tryGetProperty(const String8& key, int32_t& outValue) const; 72 bool tryGetProperty(const String8& key, float& outValue) const;
|
/system/core/libutils/ |
D | PropertyMap.cpp | 54 bool PropertyMap::tryGetProperty(const String8& key, String8& outValue) const { in tryGetProperty() function in android::PropertyMap 64 bool PropertyMap::tryGetProperty(const String8& key, bool& outValue) const { in tryGetProperty() function in android::PropertyMap 66 if (!tryGetProperty(key, intValue)) { in tryGetProperty() 74 bool PropertyMap::tryGetProperty(const String8& key, int32_t& outValue) const { in tryGetProperty() function in android::PropertyMap 76 if (! tryGetProperty(key, stringValue) || stringValue.length() == 0) { in tryGetProperty() 91 bool PropertyMap::tryGetProperty(const String8& key, float& outValue) const { in tryGetProperty() function in android::PropertyMap 93 if (! tryGetProperty(key, stringValue) || stringValue.length() == 0) { in tryGetProperty()
|