Home
last modified time | relevance | path

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

/system/bt/gd/os/android/
Dsystem_properties_test.cc28 using bluetooth::os::SetSystemProperty;
31 ASSERT_TRUE(SetSystemProperty("persist.bluetooth.factoryreset", "true")); in TEST()
35 ASSERT_TRUE(SetSystemProperty("persist.bluetooth.factoryreset", "false")); in TEST()
47 ASSERT_TRUE(SetSystemProperty("persist.bluetooth.factoryreset", "false")); in TEST()
48 ASSERT_TRUE(SetSystemProperty(property, "true")); in TEST()
49 ASSERT_FALSE(SetSystemProperty("persist.bluetooth.factoryreset", value)); in TEST()
50 ASSERT_FALSE(SetSystemProperty(property, value)); in TEST()
Dsystem_properties.cc37 bool SetSystemProperty(const std::string& property, const std::string& value) { in SetSystemProperty() function
/system/bt/gd/os/linux/
Dsystem_properties_test.cc27 using bluetooth::os::SetSystemProperty;
30 ASSERT_TRUE(SetSystemProperty("persist.bluetooth.factoryreset", "true")); in TEST()
34 ASSERT_TRUE(SetSystemProperty("persist.bluetooth.factoryreset", "false")); in TEST()
Dsystem_properties.cc40 bool SetSystemProperty(const std::string& property, const std::string& value) { in SetSystemProperty() function
/system/bt/gd/os/host/
Dsystem_properties_test.cc27 using bluetooth::os::SetSystemProperty;
30 ASSERT_TRUE(SetSystemProperty("persist.bluetooth.factoryreset", "true")); in TEST()
34 ASSERT_TRUE(SetSystemProperty("persist.bluetooth.factoryreset", "false")); in TEST()
Dsystem_properties.cc40 bool SetSystemProperty(const std::string& property, const std::string& value) { in SetSystemProperty() function
/system/bt/gd/os/
Dsystem_properties.h31 bool SetSystemProperty(const std::string& property, const std::string& value);
/system/bt/gd/facade/
Dfacade_main.cc131 CHECK(::bluetooth::os::SetSystemProperty( in main()