Home
last modified time | relevance | path

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

/system/bt/gd/storage/
Dconfig_cache.cc173 …section_iter = information_sections_.try_emplace_back(section, common::ListMap<std::string, std::s… in SetProperty()
184 …section_iter = persistent_devices_.try_emplace_back(section, std::move(section_properties->second)… in SetProperty()
186 …section_iter = persistent_devices_.try_emplace_back(section, common::ListMap<std::string, std::str… in SetProperty()
/system/bt/gd/common/
Dlist_map.h137 std::pair<iterator, bool> try_emplace_back(const Key& key, Args&&... args) { in try_emplace_back() function
Dlist_map_test.cc216 auto result = list_map.try_emplace_back(42, 420); in TEST()
222 EXPECT_FALSE(list_map.try_emplace_back(42, 420).second); in TEST()