Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/storage/
Dmutation_test.cc58 ASSERT_TRUE(config.HasProperty("A", "B")); in TEST()
59 ASSERT_TRUE(config.HasProperty("A", "C")); in TEST()
61 ASSERT_TRUE(config.HasProperty("B", "B")); in TEST()
62 ASSERT_TRUE(config.HasProperty("B", "C")); in TEST()
69 ASSERT_FALSE(config.HasProperty("A", "B")); in TEST()
70 ASSERT_TRUE(config.HasProperty("A", "C")); in TEST()
72 ASSERT_TRUE(config.HasProperty("B", "B")); in TEST()
73 ASSERT_TRUE(config.HasProperty("B", "C")); in TEST()
80 ASSERT_FALSE(config.HasProperty("A", "B")); in TEST()
81 ASSERT_TRUE(config.HasProperty("A", "C")); in TEST()
[all …]
Dconfig_cache_test.cc141 ASSERT_TRUE(config.HasProperty("A", "B")); in TEST()
142 ASSERT_TRUE(config.HasProperty("AA:BB:CC:DD:EE:FF", "B")); in TEST()
156 ASSERT_FALSE(config.HasProperty("A", "bB")); in TEST()
157 ASSERT_FALSE(config.HasProperty("AA:BB:11:DD:EE:FF", "B")); in TEST()
167 ASSERT_TRUE(config.HasProperty("A", "B")); in TEST()
168 ASSERT_TRUE(config.HasProperty("AA:BB:CC:DD:EE:FF", "B")); in TEST()
171 ASSERT_FALSE(config.HasProperty("A", "B")); in TEST()
172 ASSERT_FALSE(config.HasProperty("AA:BB:CC:DD:EE:FF", "B")); in TEST()
182 ASSERT_TRUE(config.HasProperty("A", "B")); in TEST()
183 ASSERT_TRUE(config.HasProperty("AA:BB:CC:DD:EE:FF", "B")); in TEST()
[all …]
Dstorage_module_test.cc72 return HasProperty(section, property); in HasPropertyPublic()
247 ASSERT_FALSE(config->HasProperty("01:02:03:ab:cd:ea", "name")); in TEST_F()
Dconfig_cache.h73 virtual bool HasProperty(const std::string& section, const std::string& property) const;
Dlegacy_config_file_test.cc44 EXPECT_TRUE(config.HasProperty("CC:DD:EE:FF:00:11", "LinkKey")); in TEST()
Dstorage_module.cc272 bool StorageModule::HasProperty(const std::string& section, const std::string& property) const { in HasProperty() function in bluetooth::storage::StorageModule
274 return pimpl_->cache_.HasProperty(section, property); in HasProperty()
Dstorage_module.h148 bool HasProperty(const std::string& section, const std::string& property) const;
Dconfig_cache.cc133 bool ConfigCache::HasProperty(const std::string& section, const std::string& property) const { in HasProperty() function in bluetooth::storage::ConfigCache
/packages/modules/Bluetooth/system/main/shim/
Dconfig.cc40 bool BtifConfigInterface::HasProperty(const std::string& section, in HasProperty() function in bluetooth::shim::BtifConfigInterface
42 return GetStorage()->HasProperty(section, property); in HasProperty()
85 return HasProperty(section, property); in GetStr()
Dconfig.h31 static bool HasProperty(const std::string& section,
/packages/modules/Bluetooth/system/test/mock/
Dmock_main_shim_BtifConfigInterface.cc25 bool bluetooth::shim::BtifConfigInterface::HasProperty( in HasProperty() function in bluetooth::shim::BtifConfigInterface
/packages/modules/Bluetooth/system/btif/src/
Dbtif_config.cc214 return bluetooth::shim::BtifConfigInterface::HasProperty(section, key); in btif_config_exist()