Home
last modified time | relevance | path

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

/aosp12/system/bt/gd/storage/
H A Dconfig_cache_test.cc185 ASSERT_TRUE(config.RemoveProperty("AA:BB:CC:DD:EE:FF", "B")); in TEST()
216 ASSERT_TRUE(config.RemoveProperty("CC:DD:EE:FF:00:11", "LinkKey")); in TEST()
272 config.RemoveProperty("CC:DD:EE:FF:00:11", "LinkKey"); in TEST()
299 config.RemoveProperty("CC:DD:EE:FF:00:11", "LinkKey"); in TEST()
H A Dconfig_cache.h102 virtual bool RemoveProperty(const std::string& section, const std::string& property);
H A Dconfig_cache.cc213 bool ConfigCache::RemoveProperty(const std::string& section, const std::string& property) { in RemoveProperty() function in bluetooth::storage::ConfigCache
313 RemoveProperty(entry.section, entry.property); in Commit()
H A Dstorage_module_test.cc259 storage->GetConfigCachePublic()->RemoveProperty("01:02:03:ab:cd:ea", "name"); in TEST_F()
/aosp12/system/bt/main/shim/
H A Dconfig.cc150 bool BtifConfigInterface::RemoveProperty(const std::string& section, in RemoveProperty() function in bluetooth::shim::BtifConfigInterface
152 return GetStorage()->GetConfigCache()->RemoveProperty(section, property); in RemoveProperty()
H A Dconfig.h53 static bool RemoveProperty(const std::string& section,
/aosp12/hardware/qcom/sm7250/display/sde-drm/
H A Ddrm_crtc.cpp803 RemoveProperty(DRMProperty::CORE_CLK); in ClearVotesCache()
804 RemoveProperty(DRMProperty::CORE_AB); in ClearVotesCache()
805 RemoveProperty(DRMProperty::CORE_IB); in ClearVotesCache()
806 RemoveProperty(DRMProperty::LLCC_AB); in ClearVotesCache()
807 RemoveProperty(DRMProperty::LLCC_IB); in ClearVotesCache()
808 RemoveProperty(DRMProperty::DRAM_AB); in ClearVotesCache()
809 RemoveProperty(DRMProperty::DRAM_IB); in ClearVotesCache()
H A Ddrm_property.h204 void RemoveProperty(DRMProperty prop);
H A Ddrm_property.cpp192 void DRMObject::RemoveProperty(DRMProperty prop) { in RemoveProperty() function in sde_drm::DRMObject
/aosp12/system/bt/test/mock/
H A Dmock_main_shim_BtifConfigInterface.cc80 bool bluetooth::shim::BtifConfigInterface::RemoveProperty( in RemoveProperty() function in bluetooth::shim::BtifConfigInterface
/aosp12/build/blueprint/parser/
H A Dast.go293 func (x *Map) RemoveProperty(propertyName string) (removed bool) { func
/aosp12/system/bt/btif/src/
H A Dbtif_config.cc653 return bluetooth::shim::BtifConfigInterface::RemoveProperty(section, key); in btif_config_remove()