Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/jni/
H A Dandroid_os_SystemProperties.cpp47 void ReadProperty(const prop_info* prop, Functor&& functor) in ReadProperty() function
63 void ReadProperty(JNIEnv* env, jstring keyJ, Functor&& functor) in ReadProperty() function
74 ReadProperty(prop, std::forward<Functor>(functor)); in ReadProperty()
85 ReadProperty(env, keyJ, [&](const char* value) { in SystemProperties_getSS()
101 ReadProperty(env, keyJ, [&](const char* value) { in SystemProperties_get_integral()
127 ReadProperty(env, keyJ, [&](const char* value) { in SystemProperties_get_boolean()
152 ReadProperty(prop, [&](const char* value) { in SystemProperties_getH()
163 ReadProperty(prop, [&](const char* value) { in SystemProperties_get_integralH()
173 ReadProperty(prop, [&](const char* value) { in SystemProperties_get_booleanH()
/aosp12/packages/modules/adb/daemon/
H A Dproperty_monitor.cpp46 static std::optional<std::string> ReadProperty(PropertyMonitorData* data) { in ReadProperty() function
78 data.callback(ReadProperty(&data).value()); in Add()
93 result &= data.callback(ReadProperty(&data).value()); in Run()
96 if (auto value = ReadProperty(&data); value) { in Run()