Home
last modified time | relevance | path

Searched refs:SystemProperties (Results 1 – 5 of 5) sorted by relevance

/bionic/libc/system_properties/
Dsystem_properties.cpp61 bool SystemProperties::Init(const char* filename) { in Init()
97 bool SystemProperties::AreaInit(const char* filename, bool* fsetxattr_failed) { in AreaInit()
111 uint32_t SystemProperties::AreaSerial() { in AreaSerial()
125 const prop_info* SystemProperties::Find(const char* name) { in Find()
143 uint32_t SystemProperties::ReadMutablePropertyValue(const prop_info* pi, char* value) { in ReadMutablePropertyValue()
174 int SystemProperties::Read(const prop_info* pi, char* name, char* value) { in Read()
197 void SystemProperties::ReadCallback(const prop_info* pi, in ReadCallback()
218 int SystemProperties::Get(const char* name, char* value) { in Get()
229 int SystemProperties::Update(prop_info* pi, const char* value, unsigned int len) { in Update()
273 int SystemProperties::Add(const char* name, unsigned int namelen, const char* value, in Add()
[all …]
/bionic/libc/system_properties/include/system_properties/
Dsystem_properties.h42 class SystemProperties {
50 SystemProperties() = default;
52 explicit SystemProperties(bool initialized) : initialized_(initialized) { in SystemProperties() function
55 BIONIC_DISALLOW_COPY_AND_ASSIGN(SystemProperties);
/bionic/libc/bionic/
Dsystem_property_api.cpp37 static SystemProperties system_properties;
38 static_assert(__is_trivially_constructible(SystemProperties),
/bionic/benchmarks/
Dproperty_benchmark.cpp93 SystemProperties& system_properties() { in system_properties()
123 SystemProperties system_properties_;
/bionic/tests/
Dsystem_properties_test.cpp38 class SystemPropertiesTest : public SystemProperties {
40 SystemPropertiesTest() : SystemProperties(false) { in SystemPropertiesTest()