Home
last modified time | relevance | path

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

/system/core/base/
Dproperties.cpp73 static std::map<std::string, std::string>& g_properties = *new std::map<std::string, std::string>; variable
75 g_properties[key] = value; in __system_property_set()
93 auto it = g_properties.find(key); in GetProperty()
94 if (it == g_properties.end()) return default_value; in GetProperty()