Searched refs:tryGetProperty (Results 1 – 2 of 2) sorted by relevance
/system/core/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 | 58 bool PropertyMap::tryGetProperty(const String8& key, String8& outValue) const { in tryGetProperty() function in android::PropertyMap 68 bool PropertyMap::tryGetProperty(const String8& key, bool& outValue) const { in tryGetProperty() function in android::PropertyMap 70 if (!tryGetProperty(key, intValue)) { in tryGetProperty() 78 bool PropertyMap::tryGetProperty(const String8& key, int32_t& outValue) const { in tryGetProperty() function in android::PropertyMap 80 if (! tryGetProperty(key, stringValue) || stringValue.length() == 0) { in tryGetProperty() 95 bool PropertyMap::tryGetProperty(const String8& key, float& outValue) const { in tryGetProperty() function in android::PropertyMap 97 if (! tryGetProperty(key, stringValue) || stringValue.length() == 0) { in tryGetProperty()
|