Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/osi/test/
Dconfig_test.cc170 EXPECT_TRUE(config_has_key(*config, CONFIG_DEFAULT_SECTION, "first_key")); in TEST_F()
179 EXPECT_TRUE(config_has_key(*config, "DID", "recordNumber")); in TEST_F()
180 EXPECT_TRUE(config_has_key(*config, "DID", "primaryRecord")); in TEST_F()
181 EXPECT_TRUE(config_has_key(*config, "DID", "productId")); in TEST_F()
182 EXPECT_TRUE(config_has_key(*config, "DID", "version")); in TEST_F()
187 EXPECT_FALSE(config_has_key(*config, "DID_BAD", "primaryRecord")); in TEST_F()
188 EXPECT_FALSE(config_has_key(*config, "DID", "primaryRecord_BAD")); in TEST_F()
190 config_has_key(*config, CONFIG_DEFAULT_SECTION, "primaryRecord")); in TEST_F()
221 EXPECT_FALSE(config_has_key(*config, "DID", "productId")); in TEST_F()
233 EXPECT_FALSE(config_has_key(*config, "DID", "productId")); in TEST_F()
/packages/modules/Bluetooth/system/test/mock/
Dmock_osi_config.cc44 struct config_has_key config_has_key; variable
101 bool config_has_key(const config_t& config, const std::string& section, in config_has_key() function
104 return test::mock::osi_config::config_has_key(config, section, key); in config_has_key()
Dmock_osi_config.h148 struct config_has_key { struct
160 extern struct config_has_key config_has_key; argument
/packages/modules/Bluetooth/system/device/src/
Ddevice_iot_config.cc70 return config_has_key(*config, section, key); in device_iot_config_exist()
81 bool ret = config_has_key(*config, section, key); in device_iot_config_get_int()
/packages/modules/Bluetooth/system/osi/include/
Dconfig.h73 bool config_has_key(const config_t& config, const std::string& section,
/packages/modules/Bluetooth/system/device/test/
Ddevice_iot_config_test.cc1001 test::mock::osi_config::config_has_key.body = [&](const config_t& config, in TEST_F_WITH_FLAGS()
1031 test::mock::osi_config::config_has_key.body = {}; in TEST_F_WITH_FLAGS()
1131 test::mock::osi_config::config_has_key.body = [&](const config_t& config, in TEST_F_WITH_FLAGS()
1172 test::mock::osi_config::config_has_key.body = {}; in TEST_F_WITH_FLAGS()
1185 test::mock::osi_config::config_has_key.body = [&](const config_t& config, in TEST_F_WITH_FLAGS()
1226 test::mock::osi_config::config_has_key.body = {}; in TEST_F_WITH_FLAGS()
/packages/modules/Bluetooth/system/osi/src/
Dconfig.cc145 bool config_has_key(const config_t& config, const std::string& section, in config_has_key() function
/packages/modules/Bluetooth/system/test/stub/
Dosi.cc91 bool config_has_key(const config_t& config, const std::string& section, in config_has_key() function