Home
last modified time | relevance | path

Searched refs:HasPersistentSection (Results 1 – 3 of 3) sorted by relevance

/system/bt/btif/test/
Dbtif_config_cache_test.cc113 EXPECT_FALSE(test_btif_config_cache.HasPersistentSection(kBtAddrInvalid1)); in TEST()
124 EXPECT_FALSE(test_btif_config_cache.HasPersistentSection(kBtAddrInvalid2)); in TEST()
135 EXPECT_FALSE(test_btif_config_cache.HasPersistentSection(kBtAddrInvalid3)); in TEST()
146 EXPECT_FALSE(test_btif_config_cache.HasPersistentSection(kBtAddrInvalid4)); in TEST()
157 EXPECT_FALSE(test_btif_config_cache.HasPersistentSection(kBtSectionInvalid1)); in TEST()
201 EXPECT_TRUE(test_btif_config_cache.HasPersistentSection(kBtAddr1)); in TEST()
280 EXPECT_TRUE(test_btif_config_cache.HasPersistentSection(kBtAddr1)); in TEST()
300 EXPECT_TRUE(test_btif_config_cache.HasPersistentSection(kBtAddr1)); in TEST()
316 EXPECT_FALSE(test_btif_config_cache.HasPersistentSection(kBtAddr1)); in TEST()
324 EXPECT_TRUE(test_btif_config_cache.HasPersistentSection(kBtAddr1)); in TEST()
[all …]
/system/bt/btif/include/
Dbtif_config_cache.h38 bool HasPersistentSection(const std::string& section_name);
/system/bt/btif/src/
Dbtif_config_cache.cc77 bool BtifConfigCache::HasPersistentSection(const std::string& section_name) { in HasPersistentSection() function in BtifConfigCache
87 return HasUnpairedSection(section_name) || HasPersistentSection(section_name); in HasSection()