Home
last modified time | relevance | path

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

/system/bt/gd/os/android/
Dsystem_properties_test.cc27 using bluetooth::os::GetSystemProperty;
32 auto ret = GetSystemProperty("persist.bluetooth.factoryreset"); in TEST()
36 ret = GetSystemProperty("persist.bluetooth.factoryreset"); in TEST()
39 ret = GetSystemProperty("persist.bluetooth.factoryreset_do_not_exist"); in TEST()
51 ASSERT_TRUE(GetSystemProperty(property)); in TEST()
53 auto ret = GetSystemProperty("persist.bluetooth.factoryreset"); in TEST()
Dsystem_properties.cc28 std::optional<std::string> GetSystemProperty(const std::string& property) { in GetSystemProperty() function
/system/bt/gd/os/linux/
Dsystem_properties_test.cc26 using bluetooth::os::GetSystemProperty;
31 auto ret = GetSystemProperty("persist.bluetooth.factoryreset"); in TEST()
35 ret = GetSystemProperty("persist.bluetooth.factoryreset"); in TEST()
38 ret = GetSystemProperty("persist.bluetooth.factoryreset_do_not_exist"); in TEST()
41 ASSERT_FALSE(GetSystemProperty("persist.bluetooth.factoryreset")); in TEST()
Dsystem_properties.cc31 std::optional<std::string> GetSystemProperty(const std::string& property) { in GetSystemProperty() function
/system/bt/gd/os/host/
Dsystem_properties_test.cc26 using bluetooth::os::GetSystemProperty;
31 auto ret = GetSystemProperty("persist.bluetooth.factoryreset"); in TEST()
35 ret = GetSystemProperty("persist.bluetooth.factoryreset"); in TEST()
38 ret = GetSystemProperty("persist.bluetooth.factoryreset_do_not_exist"); in TEST()
41 ASSERT_FALSE(GetSystemProperty("persist.bluetooth.factoryreset")); in TEST()
Dsystem_properties.cc31 std::optional<std::string> GetSystemProperty(const std::string& property) { in GetSystemProperty() function
/system/bt/gd/os/
Dsystem_properties.h27 std::optional<std::string> GetSystemProperty(const std::string& property);
/system/bt/gd/hal/
Dsnoop_logger.cc386 auto max_packets_per_file_prop = os::GetSystemProperty(kBtSnoopMaxPacketsPerFileProperty); in GetMaxPacketsPerFile()
402 auto is_debuggable = os::GetSystemProperty(kIsDebuggableProperty); in GetBtSnoopMode()
404 auto default_mode_property = os::GetSystemProperty(kBtSnoopDefaultLogModeProperty); in GetBtSnoopMode()
414 auto btsnoop_mode_prop = os::GetSystemProperty(kBtSnoopLogModeProperty); in GetBtSnoopMode()
/system/bt/gd/shim/
Ddumpsys.cc72 return (os::GetSystemProperty(kReadOnlyDebuggableProperty) == "1"); in IsDebuggable()
/system/bt/gd/storage/
Dstorage_module.cc146 if (os::GetSystemProperty(kFactoryResetProperty) == "true") { in Start()