Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/test/mock/
Dmock_osi_config.cc50 struct config_remove_section config_remove_section; variable
127 bool config_remove_section(config_t* config, const std::string& section) { in config_remove_section() function
129 return test::mock::osi_config::config_remove_section(config, section); in config_remove_section()
Dmock_osi_config.h230 struct config_remove_section { struct
240 extern struct config_remove_section config_remove_section; argument
/packages/modules/Bluetooth/system/osi/test/
Dconfig_test.cc217 TEST_F(ConfigTest, config_remove_section) { in TEST_F() argument
219 EXPECT_TRUE(config_remove_section(config.get(), "DID")); in TEST_F()
226 EXPECT_FALSE(config_remove_section(config.get(), "not a section")); in TEST_F()
/packages/modules/Bluetooth/system/osi/include/
Dconfig.h128 bool config_remove_section(config_t* config, const std::string& section);
/packages/modules/Bluetooth/system/osi/src/
Dconfig.cc234 bool config_remove_section(config_t* config, const std::string& section) { in config_remove_section() function
/packages/modules/Bluetooth/system/test/stub/
Dosi.cc105 bool config_remove_section(config_t* config, const std::string& section) { in config_remove_section() function
/packages/modules/Bluetooth/system/device/src/
Dinterop.cc480 bool ret = config_remove_section(config_dynamic.get(), section); in interop_config_remove_section()